aboutsummaryrefslogtreecommitdiffstats
path: root/appendixa/gcc-desc.xml
diff options
context:
space:
mode:
authorTimothy Bauscher <timothy@linuxfromscratch.org>2002-09-28 21:08:29 +0000
committerTimothy Bauscher <timothy@linuxfromscratch.org>2002-09-28 21:08:29 +0000
commit2c094d60db777dce20fd4eccf4996299c2a0dfe0 (patch)
tree6059aa8ca1a67a6e974f8802b9af66a7330272a4 /appendixa/gcc-desc.xml
parentf5cc1c171ba0c9aece1fe1046ce4dbaed8850e9f (diff)
Applied Bill Maltby's grammar patch. Changed $LFS to LFS where appropriate. Internal XML cleanup: removed double spacing where appropriate.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@2138 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'appendixa/gcc-desc.xml')
-rw-r--r--appendixa/gcc-desc.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/appendixa/gcc-desc.xml b/appendixa/gcc-desc.xml
index f2408b4de..8848a5120 100644
--- a/appendixa/gcc-desc.xml
+++ b/appendixa/gcc-desc.xml
@@ -9,7 +9,7 @@ g++, gcc, gccbug, gcov and tradcpp0</para></sect3>
<sect3><title>Descriptions</title>
<sect4><title>cc, cc1, cc1plus, gcc</title>
-<para>These are the C compiler. A compiler translates source code in
+<para>These are the C compiler. A compiler translates source code in
text format to a format that a computer understands. After a source code
file is compiled into an object file, a linker will create an executable
file from one or more of these compiler generated object files.</para></sect4>
@@ -21,7 +21,7 @@ gcc etc.</para></sect4>
<sect4><title>c++filt</title>
<para>The C++ language provides function overloading, which means that it is
possible to write many functions with the same name (providing each takes
-parameters of different types). All C++ function names are encoded into
+parameters of different types). All C++ function names are encoded into
a low-level assembly label (this process is known as mangling). The c++filt
program does the inverse mapping: it decodes (demangles) low-level names
into user-level names so that the linker can keep these overloaded functions
@@ -63,7 +63,7 @@ libsupc++.a</para></sect3>
programs including getopt, obstack, strerror, strtol and strtoul.</para></sect4>
<sect4><title>libstdc++</title>
-<para>libstdc++ is the C++ library. It is used by C++ programs and contains
+<para>libstdc++ is the C++ library. It is used by C++ programs and contains
functions that are frequently used in C++ programs. This way the
programmer doesn't have to write certain functions (such as writing a
string of text to the screen) from scratch every time he creates a