aboutsummaryrefslogtreecommitdiffstats
path: root/appendixa/bison-desc.xml
diff options
context:
space:
mode:
authorGerard Beekmans <gerard@linuxfromscratch.org>2002-05-23 17:00:34 +0000
committerGerard Beekmans <gerard@linuxfromscratch.org>2002-05-23 17:00:34 +0000
commitcf24ff11cc44d9454ab5c8fbb9e443fe2d34830c (patch)
treeb9a26c5216dbc4724c9da37755fac0825f172b11 /appendixa/bison-desc.xml
parenta81d3ab06106446982eb3364701fd9c667542448 (diff)
fixed upper case / lower case mistakes
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@1891 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'appendixa/bison-desc.xml')
-rw-r--r--appendixa/bison-desc.xml9
1 files changed, 4 insertions, 5 deletions
diff --git a/appendixa/bison-desc.xml b/appendixa/bison-desc.xml
index 1e0895f69..41fd31543 100644
--- a/appendixa/bison-desc.xml
+++ b/appendixa/bison-desc.xml
@@ -8,8 +8,8 @@
<sect4><title>bison</title>
-<para>Bison is a parser generator, a replacement for YACC. YACC stands for Yet
-Another Compiler Compiler. What is Bison then? It is a program that
+<para>bison is a parser generator, a replacement for yacc. yacc stands for Yet
+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
@@ -22,8 +22,7 @@ one of them is the calculator.</para>
<para>A human can easily come to the result 7. Why? Because of the structure.
Our brain knows
-how to interpret the string. The computer doesn't know that and Bison
-is a
+how to interpret the string. The computer doesn't know that and bison is a
tool to help it understand by presenting the string in the following way
to the compiler:</para>
@@ -41,7 +40,7 @@ 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
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
+answer. Of course, bison isn't only used for calculators
alone.</para></sect4>
<sect4><title>yacc</title>