summaryrefslogtreecommitdiff
path: root/ld/ld.texinfo
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2013-06-10 11:59:44 +0000
committerNick Clifton <nickc@redhat.com>2013-06-10 11:59:44 +0000
commitf871120a30a8e06787421e2acb3494e127658898 (patch)
treeb595f2b7a6262fb186eaaf11f1898f0aa0e9bf8f /ld/ld.texinfo
parentf9fc1b3483bda6571d98f76a2e00458cb66e9606 (diff)
downloadbinutils-redhat-f871120a30a8e06787421e2acb3494e127658898.tar.gz
PR ld/15598
* ld.texinfo (Source Code Reference): Fix typos.
Diffstat (limited to 'ld/ld.texinfo')
-rw-r--r--ld/ld.texinfo4
1 files changed, 2 insertions, 2 deletions
diff --git a/ld/ld.texinfo b/ld/ld.texinfo
index c4e21b545a..a4fed79c9c 100644
--- a/ld/ld.texinfo
+++ b/ld/ld.texinfo
@@ -3601,7 +3601,7 @@ value. So for example the following C declaration, at file scope:
int foo = 1000;
@end smallexample
-creates a entry called @samp{foo} in the symbol table. This entry
+creates an entry called @samp{foo} in the symbol table. This entry
holds the address of an @samp{int} sized block of memory where the
number 1000 is initially stored.
@@ -3622,7 +3622,7 @@ address. Whereas:
int * a = & foo;
@end smallexample
-looks up the symbol @samp{foo} in the symbol table, gets it address
+looks up the symbol @samp{foo} in the symbol table, gets its address
and then copies this address into the block of memory associated with
the variable @samp{a}.