aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/doc/extend.texi2
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 21f550c..147b828 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2011-07-06 Jonathan Wakely <jwakely.gcc@gmail.com>
+
+ PR other/49658
+ * doc/extend.texi (Compound Literals): Fix typo.
+
2011-07-06 James Greenhalgh <james.greenhalgh@arm.com>
* config/arm/arm.h (TARGET_CPU_CPP_BUILTINS): Add
diff --git a/gcc/doc/extend.texi b/gcc/doc/extend.texi
index 5b80616..1817f51 100644
--- a/gcc/doc/extend.texi
+++ b/gcc/doc/extend.texi
@@ -1629,7 +1629,7 @@ such an initializer, as shown here:
char **foo = (char *[]) @{ "x", "y", "z" @};
@end smallexample
-Compound literals for scalar types and union types are is
+Compound literals for scalar types and union types are
also allowed, but then the compound literal is equivalent
to a cast.