aboutsummaryrefslogtreecommitdiffstats
path: root/chapter05
diff options
context:
space:
mode:
authorMarc Heerdink <gimli@linuxfromscratch.org>2002-04-21 13:01:52 +0000
committerMarc Heerdink <gimli@linuxfromscratch.org>2002-04-21 13:01:52 +0000
commit921ef9fb97ee979ce5b10f5935c613e337567684 (patch)
tree22206a966d0dba35d6474c7c96c92d2af918f9d5 /chapter05
parentcdfd845cb854a669acb1e19dfa102dec9d275cd7 (diff)
Fixed some minor typos
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@1844 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter05')
-rw-r--r--chapter05/kernel-exp.xml2
-rw-r--r--chapter05/whystatic.xml2
2 files changed, 2 insertions, 2 deletions
diff --git a/chapter05/kernel-exp.xml b/chapter05/kernel-exp.xml
index 8d6ab66e7..a5a7e9a63 100644
--- a/chapter05/kernel-exp.xml
+++ b/chapter05/kernel-exp.xml
@@ -22,7 +22,7 @@ This command copies the cross-platform kernel header files to
<filename>$LFS/usr/include</filename></para>
<para><userinput>touch $LFS/usr/include/linux/autoconf.h</userinput>: Some
-kernel header files include this <filename>autconf.h</filename> file, but
+kernel header files include this <filename>autoconf.h</filename> file, but
outside the Linux source tree, that file has no meaning so we just create
an empty one so we don't get compile errors whenever it happens to be a
dependency of another kernel header file.</para>
diff --git a/chapter05/whystatic.xml b/chapter05/whystatic.xml
index 634191db4..9bc406c65 100644
--- a/chapter05/whystatic.xml
+++ b/chapter05/whystatic.xml
@@ -24,7 +24,7 @@ separate file, which is loaded only when the program needs it. This is what
we call dynamically linked, as the library is loaded and unloaded dynamically,
as the program needs it.</para>
-<para>So now we have a 1kb file and a 2.5MB file, but we still haven't saved any
+<para>So now we have a 1KB file and a 2.5MB file, but we still haven't saved any
space (except maybe RAM until the library is needed). The REAL advantage to
dynamically linked libraries is that we only need one copy of the library.
If <filename>ls</filename> and <filename>rm</filename> both use the same