From 70d5eb7456cfb84922a470ac909dc0e8649ceec5 Mon Sep 17 00:00:00 2001 From: uz Date: Fri, 17 Jun 2011 18:56:55 +0000 Subject: [PATCH] Fix it's -> its where applicable. (Stefan Haubenthal). git-svn-id: svn://svn.cc65.org/cc65/trunk@5065 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- doc/ca65.sgml | 6 +++--- doc/coding.sgml | 2 +- doc/grc65.sgml | 2 +- doc/intro.sgml | 4 ++-- doc/ld65.sgml | 6 +++--- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/doc/ca65.sgml b/doc/ca65.sgml index 3f5e9e9ef..77a5a0899 100644 --- a/doc/ca65.sgml +++ b/doc/ca65.sgml @@ -554,7 +554,7 @@ expression: If the expression contains symbols that are not defined, and these symbols are local symbols, the enclosing scopes are searched for a symbol with the same name. If one exists and this symbol is defined, - it's attributes are used to determine the result size. + its attributes are used to determine the result size. In all other cases the expression is assumed to be word sized. @@ -3564,7 +3564,7 @@ Here's a list of all control commands and a description, what they do: Delete a define style macro definition. The command is followed by an identifier which specifies the name of the macro to delete. Macro replacement is switched of when reading the token following the command - (otherwise the macro name would be replaced by it's replacement list). + (otherwise the macro name would be replaced by its replacement list). See also the command and section . @@ -3645,7 +3645,7 @@ were specified when the macro was defined. Macros without parameters

-In it's simplest form, a macro does not have parameters. Here's an +In its simplest form, a macro does not have parameters. Here's an example: diff --git a/doc/coding.sgml b/doc/coding.sgml index 66a5dd288..1aa454f12 100644 --- a/doc/coding.sgml +++ b/doc/coding.sgml @@ -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: diff --git a/doc/grc65.sgml b/doc/grc65.sgml index 124190598..ae64cf40e 100644 --- a/doc/grc65.sgml +++ b/doc/grc65.sgml @@ -249,7 +249,7 @@ file; then, the actual application code in &dquot;Apple @@ -489,7 +489,7 @@ the emulator. Find the --lib file @@ -399,7 +399,7 @@ for the segments and define any linker symbols (see ). After that, the linker is ready to produce an output file. Before doing that, -it checks it's data for consistency. That is, it checks for unresolved +it checks its data for consistency. That is, it checks for unresolved externals (if the output format is not relocatable) and for symbol type mismatches (for example a zero page symbol is imported by a module as absolute symbol). @@ -659,7 +659,7 @@ Let's have a closer look at this