re PR other/49658 (Typo in gcc/doc/extend.texi)
authorJonathan Wakely <jwakely.gcc@gmail.com>
Wed, 6 Jul 2011 18:40:36 +0000 (18:40 +0000)
committerJonathan Wakely <redi@gcc.gnu.org>
Wed, 6 Jul 2011 18:40:36 +0000 (19:40 +0100)
2011-07-06  Jonathan Wakely  <jwakely.gcc@gmail.com>

PR other/49658
* doc/extend.texi (Compound Literals): Fix typo.

From-SVN: r175928

gcc/ChangeLog
gcc/doc/extend.texi

index 21f550c6d99cd344f891fad6bae57055330cf1f3..147b828facf021014c1cdd590da224c643b4dabb 100644 (file)
@@ -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
index 5b80616c9690959dad9a59d6286c21b1a8a3836c..1817f5123d1e6d8a7e5db342a41f5755dfb8891c 100644 (file)
@@ -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.