summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Witten <mfwitten@gmail.com>2015-04-08 19:11:44 +0000
committerGerald Pfeifer <gerald@gcc.gnu.org>2015-04-08 19:11:44 +0000
commit469f062eb94fa0edbabb53dc75d04d2e6ae75971 (patch)
tree961df4688bf71c4aa1423be2997a350fd7fba49d
parent5884a1a875c3cb32e0299e8563860ec37598b43d (diff)
downloadgcc-469f062eb94fa0edbabb53dc75d04d2e6ae75971.tar.gz
extend.texi (Attribute Syntax): Add a trailing semicolon to an example.
* doc/extend.texi (Attribute Syntax): Add a trailing semicolon to an example. From-SVN: r221931
-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 73232ce7fe6..56c7ae985d6 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2015-04-08 Michael Witten <mfwitten@gmail.com>
+
+ * doc/extend.texi (Attribute Syntax): Add a trailing semicolon
+ to an example.
+
2015-04-08 Bernhard Reutner-Fischer <aldot@gcc.gnu.org>
* tree.h (CONVERT_EXPR_P): Commentary typo fix.
diff --git a/gcc/doc/extend.texi b/gcc/doc/extend.texi
index 3e29e04c23e..d4c41c61237 100644
--- a/gcc/doc/extend.texi
+++ b/gcc/doc/extend.texi
@@ -4771,7 +4771,7 @@ example, in
@smallexample
__attribute__((noreturn)) void d0 (void),
__attribute__((format(printf, 1, 2))) d1 (const char *, ...),
- d2 (void)
+ d2 (void);
@end smallexample
@noindent