aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Henderson <rth@redhat.com>2001-12-07 15:00:16 -0800
committerRichard Henderson <rth@gcc.gnu.org>2001-12-07 15:00:16 -0800
commitad706f54377c886b78bc02d2bd238afe3a5cba5f (patch)
treebec3c291d867119d402d10368af570996e684628 /gcc
parent4b7b9007a35b89f4b7a504cff1b2fc39fcef42b5 (diff)
downloadgcc-ad706f54377c886b78bc02d2bd238afe3a5cba5f.zip
gcc-ad706f54377c886b78bc02d2bd238afe3a5cba5f.tar.gz
gcc-ad706f54377c886b78bc02d2bd238afe3a5cba5f.tar.bz2
* doc/extend.texi: Fix typo last change.
From-SVN: r47777
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog2
-rw-r--r--gcc/doc/extend.texi2
2 files changed, 3 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index e8439fc..b07ac1b 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,5 +1,7 @@
2001-12-07 Richard Henderson <rth@redhat.com>
+ * doc/extend.texi: Fix typo last change.
+
* c-decl.c (c_language): Remove duplicate.
2001-12-07 Dale Johannesen <dalej@apple.com>
diff --git a/gcc/doc/extend.texi b/gcc/doc/extend.texi
index e75a8d6..5e80010 100644
--- a/gcc/doc/extend.texi
+++ b/gcc/doc/extend.texi
@@ -3025,7 +3025,7 @@ Aggregates with this attribute are invalid, even if they are of the same
size as a corresponding scalar. For example, the declaration:
@smallexample
-struct S { int a; };
+struct S @{ int a; @};
struct S __attribute__ ((vector_size (16))) foo;
@end smallexample