aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorJonathan Wakely <jwakely.gcc@gmail.com>2011-07-06 18:40:36 +0000
committerJonathan Wakely <redi@gcc.gnu.org>2011-07-06 19:40:36 +0100
commit49d6830d664be5feaf0537d7b310d5c6d5e9fc65 (patch)
treead76b30309ab51c78b4d0b209f5de038d47f6a79 /gcc
parentd75dae75d741eb852f400ccda88079bc3f26a3ad (diff)
downloadgcc-49d6830d664be5feaf0537d7b310d5c6d5e9fc65.zip
gcc-49d6830d664be5feaf0537d7b310d5c6d5e9fc65.tar.gz
gcc-49d6830d664be5feaf0537d7b310d5c6d5e9fc65.tar.bz2
re PR other/49658 (Typo in gcc/doc/extend.texi)
2011-07-06 Jonathan Wakely <jwakely.gcc@gmail.com> PR other/49658 * doc/extend.texi (Compound Literals): Fix typo. From-SVN: r175928
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.