summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorAkim Demaille <akim@lrde.epita.fr>2013-02-25 10:31:03 +0100
committerAkim Demaille <akim@lrde.epita.fr>2013-04-09 14:07:52 +0200
commitd1a07886ee63d7346d585d34190162b79a30fdfb (patch)
treec1e2f48697bb142c79f49749e46be05f7fb64444 /doc
parent71846502ae5af8e93e87355d178ce7d5704cdf32 (diff)
downloadbison-d1a07886ee63d7346d585d34190162b79a30fdfb.tar.gz
doc: style changes
* doc/bison.texi (Destructor Decl, Printer Decl): Group series of %token and %type together.
Diffstat (limited to 'doc')
-rw-r--r--doc/bison.texi12
1 files changed, 4 insertions, 8 deletions
diff --git a/doc/bison.texi b/doc/bison.texi
index 2ed10c2f..6f50658a 100644
--- a/doc/bison.texi
+++ b/doc/bison.texi
@@ -4990,10 +4990,8 @@ For example:
@example
%union @{ char *string; @}
-%token <string> STRING1
-%token <string> STRING2
-%type <string> string1
-%type <string> string2
+%token <string> STRING1 STRING2
+%type <string> string1 string2
%union @{ char character; @}
%token <character> CHR
%type <character> chr
@@ -5119,10 +5117,8 @@ For example:
@example
%union @{ char *string; @}
-%token <string> STRING1
-%token <string> STRING2
-%type <string> string1
-%type <string> string2
+%token <string> STRING1 STRING2
+%type <string> string1 string2
%union @{ char character; @}
%token <character> CHR
%type <character> chr