]> git.sur5r.net Git - cc65/blobdiff - libsrc/pce/ctype.s
Fixed some mistakes (mostly in the documentation).
[cc65] / libsrc / pce / ctype.s
index fa9a65c8b175e3029a842b3a30d40bef5e63f3c0..aaedeb1a97d2e3f3962dd0a0c74646cdbce0d362 100644 (file)
 
 .rodata
 
-; The following 256 byte wide table specifies attributes for the isxxx type
+; The following 256-byte-wide table specifies attributes for the isxxx type
 ; of functions. Doing it by a table means some overhead in space, but it
 ; has major advantages:
 ;
-;   * It is fast. If it were'nt for the slow parameter passing of cc65, one
+;   * It is fast. If it weren't for the slow parameter passing of cc65, one
 ;     could even define macros for the isxxx functions (this is usually
 ;     done on other platforms).
 ;
@@ -157,5 +157,3 @@ __ctype:
         .byte   CT_NONE                 ; 126/7e _____~_____
         .byte   CT_OTHER_WS             ; 127/7f ____DEL____
         .endrepeat
-
-