aboutsummaryrefslogtreecommitdiffstats
path: root/appendixa/bison-desc.xml
diff options
context:
space:
mode:
Diffstat (limited to 'appendixa/bison-desc.xml')
-rw-r--r--appendixa/bison-desc.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/appendixa/bison-desc.xml b/appendixa/bison-desc.xml
index 5c5fa1070..77b0432b7 100644
--- a/appendixa/bison-desc.xml
+++ b/appendixa/bison-desc.xml
@@ -15,7 +15,7 @@ Another Compiler Compiler. What is bison then? It is a program that
generates a program that analyzes the structure of a text file. Instead of
writing the actual program a user specifies how things should be connected
and with those rules a program is constructed that analyzes the
-text file. There are a lot of examples where structure is needed and
+text file. There are a lot of examples where structure is needed and
one of them is the calculator.</para>
<para>Given the string :</para>
@@ -39,7 +39,7 @@ to the compiler:</para>
multiplies 2 and 3. The result of that multiplication is remembered and
the next thing that the computer sees is the result of 2*3 and the
number 1 which are joined by the add symbol. Adding 1 to the previous
-result makes 7. In calculating the most complex calculations can be
+result makes 7. In calculating, the most complex calculations can be
broken down in this tree format and the computer just starts at the
bottom and works its way up to the top and comes with the correct
answer. Of course, bison isn't only used for calculators