changeset 7202:510edb126938

* visibility.texi: Remove duplicate word: "pointer".
author Jim Meyering <jim@meyering.net>
date Sun, 27 Aug 2006 20:38:52 +0000
parents 57d601f3d3db
children 85aa09b61c06
files doc/ChangeLog doc/visibility.texi
diffstat 2 files changed, 5 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/doc/ChangeLog
+++ b/doc/ChangeLog
@@ -1,3 +1,7 @@
+2006-08-27  Jim Meyering  <jim@meyering.net>
+
+	* visibility.texi: Remove duplicate word: "pointer".
+
 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
 
 	* regexprops-generic.texi: Add a copyright notice.
--- a/doc/visibility.texi
+++ b/doc/visibility.texi
@@ -42,7 +42,7 @@
 can assume that it is in the same shared library is just a direct "call"
 instructions. Similarly for variables: A reference to a global variable
 fetches a pointer in the so-called GOT (global offset table); this pointer
-pointer to the variable's memory. So the code to access it is two memory
+to the variable's memory. So the code to access it is two memory
 load instructions. Whereas for a variable which is known to reside in the
 same shared library, it is just a direct memory access: one memory load
 instruction.