OSDN Git Service

2011-07-06 Jonathan Wakely <jwakely.gcc@gmail.com>
authorredi <redi@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 6 Jul 2011 18:40:36 +0000 (18:40 +0000)
committerredi <redi@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 6 Jul 2011 18:40:36 +0000 (18:40 +0000)
PR other/49658
* doc/extend.texi (Compound Literals): Fix typo.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@175928 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/doc/extend.texi

index 21f550c..147b828 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 5b80616..1817f51 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.