bison-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

doc: fix spello


From: Akim Demaille
Subject: doc: fix spello
Date: Tue, 3 Aug 2021 12:37:19 +0200

The only non-formatting change is

-These tokens prevents the introduction of new conflicts.
+These tokens prevent the introduction of new conflicts.

commit b293d4fbcafc6287b858df194b7564c5a593b25e
Author: Akim Demaille <akim.demaille@gmail.com>
Date:   Tue Aug 3 12:22:15 2021 +0200

    doc: fix spello
    
    * doc/bison.texi (Multiple start-symbols): here.

diff --git a/doc/bison.texi b/doc/bison.texi
index c89b7b144..e2cd1525d 100644
--- a/doc/bison.texi
+++ b/doc/bison.texi
@@ -15418,15 +15418,14 @@ invited to consult the dedicated literature.
 
 @quotation
 I have several closely related grammars, and I would like to share their
-implementations.  In fact, I could use a single grammar but with
-multiple entry points.
+implementations.  In fact, I could use a single grammar but with multiple
+entry points.
 @end quotation
 
-Bison does not support multiple start-symbols, but there is a very
-simple means to simulate them.  If @code{foo} and @code{bar} are the two
-pseudo start-symbols, then introduce two new tokens, say
-@code{START_FOO} and @code{START_BAR}, and use them as switches from the
-real start-symbol:
+Bison does not support multiple start-symbols, but there is a very simple
+means to simulate them.  If @code{foo} and @code{bar} are the two pseudo
+start-symbols, then introduce two new tokens, say @code{START_FOO} and
+@code{START_BAR}, and use them as switches from the real start-symbol:
 
 @example
 %token START_FOO START_BAR;
@@ -15436,7 +15435,7 @@ start:
 | START_BAR bar;
 @end example
 
-These tokens prevents the introduction of new conflicts.  As far as the
+These tokens prevent the introduction of new conflicts.  As far as the
 parser goes, that is all that is needed.
 
 Now the difficult part is ensuring that the scanner will send these tokens




reply via email to

[Prev in Thread] Current Thread [Next in Thread]