summaryrefslogtreecommitdiff
path: root/doc/bison.texi
diff options
context:
space:
mode:
authorAkim Demaille <akim@lrde.epita.fr>2015-01-15 17:26:43 +0100
committerAkim Demaille <akim@lrde.epita.fr>2015-01-16 10:52:17 +0100
commit559b30881dd694f39aaa809797e463de73ed4e34 (patch)
treeabfbd025e9a526649827e7306c7cd3f8ed002c9b /doc/bison.texi
parent88ffc4b907145aa5f03d457c5eece49a4c0d439c (diff)
downloadbison-559b30881dd694f39aaa809797e463de73ed4e34.tar.gz
doc: minor fixes
* doc/bison.texi: Fix warnings about colon in reference names. * data/bison.m4, src/files.h: Fix comments. * doc/Doxyfile.in: update.
Diffstat (limited to 'doc/bison.texi')
-rw-r--r--doc/bison.texi8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/bison.texi b/doc/bison.texi
index 1a2b169b..26c17d60 100644
--- a/doc/bison.texi
+++ b/doc/bison.texi
@@ -7550,7 +7550,7 @@ in an associativity related conflict, which can be specified as follows.
The unary-minus is another typical example where associativity is
usually over-specified, see @ref{Infix Calc, , Infix Notation
-Calculator: @code{calc}}. The @code{%left} directive is traditionally
+Calculator - @code{calc}}. The @code{%left} directive is traditionally
used to declare the precedence of @code{NEG}, which is more than needed
since it also defines its associativity. While this is harmless in the
traditional example, who knows how @code{NEG} might be used in future
@@ -10748,8 +10748,8 @@ it must be copyable;
in order to compute the (default) value of @code{@@$} in a reduction, the
parser basically runs
@example
-@@$.begin = @@$1.begin;
-@@$.end = @@$@var{N}.end; // The location of last right-hand side symbol.
+@@$.begin = @@1.begin;
+@@$.end = @@@var{N}.end; // The location of last right-hand side symbol.
@end example
@noindent
so there must be copyable @code{begin} and @code{end} members;
@@ -11337,7 +11337,7 @@ regular destructors. All the values are printed using their
@noindent
The grammar itself is straightforward (@pxref{Location Tracking Calc, ,
-Location Tracking Calculator: @code{ltcalc}}).
+Location Tracking Calculator - @code{ltcalc}}).
@comment file: calc++-parser.yy
@example