]> git.sur5r.net Git - cc65/commitdiff
Fix some typos. 347/head
authorChristian Groessler <chris@groessler.org>
Tue, 6 Sep 2016 13:13:44 +0000 (15:13 +0200)
committerChristian Groessler <chris@groessler.org>
Tue, 6 Sep 2016 13:13:44 +0000 (15:13 +0200)
doc/atari.sgml
src/ca65/scanner.c

index 54f3aab786ddd24d44d4d97b8ce24ce7aaf5cc42..a0dbe2f471a4f9c84cdcc99cc8f8ce96071d7869 100644 (file)
@@ -337,7 +337,7 @@ A word of caution: Since the <tt/0x00/ character has to be mapped in an
 incompatible way to the C-standard, the usage of string functions in
 conjunction with internal character mapped strings delivers unexpected
 results regarding the string length. The end of strings are detected where
-you may not expect them (to early or (much) to late). Internal mapped
+you may not expect them (too early or (much) too late). Internal mapped
 strings typically support the "<tt/mem...()/" functions.
 
 <em>For assembler sources the macro "<tt/scrcode/" from the "<tt/atari.mac/"
index f33ed5def6e89aadcabf47222be95024d6b9bb21..994f95fba86c2b2b7a39707da4ebc10d81b3c71d 100644 (file)
@@ -408,7 +408,7 @@ static void IFNextChar (CharSource* S)
 
         /* If we come here, we have a new input line. To avoid problems
         ** with strange line terminators, remove all whitespace from the
-        ** end of the line, the add a single newline.
+        ** end of the line, then add a single newline.
         */
         Len = SB_GetLen (&S->V.File.Line);
         while (Len > 0 && IsSpace (SB_AtUnchecked (&S->V.File.Line, Len-1))) {