summaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorjsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4>2001-01-12 16:58:51 +0000
committerjsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4>2001-01-12 16:58:51 +0000
commitf934d81d099cea20d65074a59ffb919151bee44d (patch)
treec4837195f27eb7a97d285bfaf972884430caf316 /gcc
parent48946edb499d24ed6fecd3155a1262e5ab00b28d (diff)
downloadgcc-f934d81d099cea20d65074a59ffb919151bee44d.tar.gz
* extend.texi: Refer to an array of pointers to functions instead
of one of functions. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@38948 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/extend.texi4
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 5dca7852955..5fca2bc9961 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2001-01-12 Joseph S. Myers <jsm28@cam.ac.uk>
+
+ * extend.texi: Refer to an array of pointers to functions instead
+ of one of functions.
+
Fri Jan 12 12:08:12 MET 2001 Andreas Jaeger <aj@suse.de>
Jan Hubicka <jh@suse.cz>
diff --git a/gcc/extend.texi b/gcc/extend.texi
index bee479a8f61..ff027dceca2 100644
--- a/gcc/extend.texi
+++ b/gcc/extend.texi
@@ -582,8 +582,8 @@ typeof (x[0](1))
@end example
@noindent
-This assumes that @code{x} is an array of functions; the type described
-is that of the values of the functions.
+This assumes that @code{x} is an array of pointers to functions;
+the type described is that of the values of the functions.
Here is an example with a typename as the argument: