]> git.sur5r.net Git - cc65/commitdiff
Fixed a typo
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Tue, 3 Jun 2003 12:15:57 +0000 (12:15 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Tue, 3 Jun 2003 12:15:57 +0000 (12:15 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@2194 b7a2c559-68d2-44c3-8de9-860c34a00d81

libsrc/common/sprintf.s
libsrc/common/vsprintf.s

index c3e29cb7ca6f77e55215fb8f615f8789597dee7e..1b196450a842d7d8d08881a5e31f138952ace739 100644 (file)
@@ -28,7 +28,7 @@ _sprintf:
 
 ; We have to push buf and format, both in the order they already have on stack.
 ; To make this somewhat more efficient, we will create space on the stack and
-; the do a copy of the complete block instead of pushing each parameter
+; then do a copy of the complete block instead of pushing each parameter
 ; separately. Since the size of the arguments passed is the same as the size
 ; of the fixed arguments, this will allow us to calculate the pointer to the
 ; fixed size arguments easier (they're just ParamSize bytes away).
index 925e82de551555e914b3ee0bebed9b57c563a914..2e2752b433a1f782472bc861dd5493a32ff36d73 100644 (file)
@@ -33,7 +33,7 @@ outdesc:                      ; Static outdesc structure
 ; static void out (struct outdesc* d, const char* buf, unsigned count)
 ; /* Routine used for writing */
 ; {
-;     /* String - be shure to check the size */
+;     /* String - be sure to check the size */
 ;     while (count-- && d->ccount < d->uns) {
 ;        ((char*) d->ptr) [d->ccount] = *buf;
 ;        ++buf;