]> git.sur5r.net Git - cc65/blobdiff - doc/coding.sgml
Merge remote-tracking branch 'origin' into da65-synclines
[cc65] / doc / coding.sgml
index 66a5dd288d32401b9b43b253e7422e7dd1c67a34..f6dfc3a357c891fb15c12af445d2c19d146542b9 100644 (file)
@@ -2,7 +2,7 @@
 
 <article>
 <title>cc65 coding hints
-<author>Ullrich von Bassewitz, <htmlurl url="mailto:uz@cc65.org" name="uz@cc65.org">
+<author><url url="mailto:uz@cc65.org" name="Ullrich von Bassewitz">
 <date>2000-12-03, 2009-09-01
 
 <abstract>
@@ -101,7 +101,7 @@ constant. The compiler emits code to add a constant to the secondary register.
 Same thing again for the constant 3. So the code produced contains a fetch
 of 'i', two additions of constants, and a store (into 'i'). Unfortunately, the
 compiler does not see, that "OFFS + 3" is a constant for itself, since it does
-it's evaluation from left to right. There are some ways to help the compiler
+its evaluation from left to right. There are some ways to help the compiler
 to recognize expression like this:
 
 <enum>