]> git.sur5r.net Git - cc65/commitdiff
Fixed a few typos
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Tue, 17 Jul 2001 10:28:38 +0000 (10:28 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Tue, 17 Jul 2001 10:28:38 +0000 (10:28 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@796 b7a2c559-68d2-44c3-8de9-860c34a00d81

doc/coding.sgml
doc/geos.sgml

index a24c8ba65a2a7262e4d671e00e27628d748551fe..911b77422aae4605c276331eff83f157634784c9 100644 (file)
@@ -142,7 +142,7 @@ first in your source code. This will speed up the code.
 
 <sect>Use the preincrement and predecrement operators<p>
 
-The compiler not always smart enough to figure out, if the rvalue of an
+The compiler is not always smart enough to figure out, if the rvalue of an
 increment is used or not. So it has to save and restore that value when
 producing code for the postincrement and postdecrement operators, even if this
 value is never used. To avoid the additional overhead, use the preincrement
@@ -377,7 +377,7 @@ is unknown at compiler time, the compiler will generate code to calculate the
 location on the stack when needed.
 
 Because of this additional code, accessing the fixed parameters in a variadic
-function is much more expensive than access to parameters in a "normal" 
+function is much more expensive than access to parameters in a "normal"
 function. Unfortunately, this additional code is also invisible to the
 programmer, so it is easy to forget.
 
index 019e3533ad915fa9648eb5f873ca26c86fd8b29a..3a2f8eea0c470a173e61b0d56b7b4eed8ebae9a6 100644 (file)
@@ -1194,7 +1194,7 @@ This calls system's <tt/Panic/ handler - it shows dialog box with message
 <tscreen><verb>
 System error at:xxxx
 </verb></tscreen>
-where <tt/xxxx/ is last known execution address (caller). By default this is binded to <tt/BRK/
+where <tt/xxxx/ is last known execution address (caller). By default this is bound to <tt/BRK/
 instruction, but it might be usable in debugging as kind of <tt/assert/.
 <p>
 System is halted after call to <tt/Panic/.
@@ -1236,7 +1236,7 @@ new value in <tt/curDevice/, in other case new disk driver is loaded from REU or
 <sect>Library Structures
 <p>
 To simplify usage and optimize passing parameters to functions I have declared several structures
-which describe most common objects. Some of these structures are binded to static addresses in
+which describe most common objects. Some of these structures are bound to static addresses in
 GEOS data space ($8000-$8fff), so you can use their fields directly in optimized way.
 Please see <tt/gsym.h/ and find them. All structures are defined in <tt/gstruct.h/ and you may
 find also some comments there.
@@ -1250,7 +1250,7 @@ One simple structure describing a point on the screen.
 <sect2>fontdesc
 <p>
 This structure describes a font in one pointsize. There is current font - <tt/struct fontdesc/
-binded at <tt/curFontDesc/. You can also force GEOS to use your own fonts by calling
+bound to <tt/curFontDesc/. You can also force GEOS to use your own fonts by calling
 <tt/LoadCharSet/. You just need to open a VLIR font file and load one record - one pointsize
 somewhere. At the start of this area you already have all data for <tt/fontdesc/ so you can
 pass a pointer to the load adress of that pointsize to <tt/LoadCharSet/.