aboutsummaryrefslogtreecommitdiffstats
path: root/chapter07
diff options
context:
space:
mode:
authorGerard Beekmans <gerard@linuxfromscratch.org>2001-04-09 17:38:08 +0000
committerGerard Beekmans <gerard@linuxfromscratch.org>2001-04-09 17:38:08 +0000
commit4d994af41993a91e108750000ed6812040887e06 (patch)
tree9c0aa0e5d23aa7ca97ffbcd8697c5b0d41b65feb /chapter07
parent2f86e053737bbad5ce63083b839ec55404e87082 (diff)
Spell Checks
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@457 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter07')
-rw-r--r--chapter07/functions.xml2
-rw-r--r--chapter07/mountfs.xml4
-rw-r--r--chapter07/rc.xml8
-rw-r--r--chapter07/rcS.xml2
4 files changed, 8 insertions, 8 deletions
diff --git a/chapter07/functions.xml b/chapter07/functions.xml
index 49ce64c76..48be12468 100644
--- a/chapter07/functions.xml
+++ b/chapter07/functions.xml
@@ -48,7 +48,7 @@ evaluate_retval()
# The print_status prints [ OK ] or [FAILED] to the screen. OK appears
# in the colour defined by the SUCCESS variable and FAILED appears in
# the colour defined by the FAILURE variable. Both are printed starting
-# in the colomn defined by the COL variable.
+# in the column defined by the COL variable.
#
print_status()
diff --git a/chapter07/mountfs.xml b/chapter07/mountfs.xml
index ce80b5c24..e084b512e 100644
--- a/chapter07/mountfs.xml
+++ b/chapter07/mountfs.xml
@@ -49,7 +49,7 @@ case "$1" in
#
# Remove the possible /fastboot and /forcefsck files. they are
# only
- # supposed to be used during the next reboot's checkfs wich just
+ # supposed to be used during the next reboot's checkfs which just
# happened. If you want to fastboot or forcefsck again you'll
# have to
# recreate the files
@@ -72,7 +72,7 @@ case "$1" in
stop)
#
- # Deactive all the swap partitions
+ # Deactivate all the swap partitions
#
echo -n "Deactivating swap..."
diff --git a/chapter07/rc.xml b/chapter07/rc.xml
index 989b6c8ac..6bfb37997 100644
--- a/chapter07/rc.xml
+++ b/chapter07/rc.xml
@@ -2,7 +2,7 @@
<title>Creating the rc script</title>
<para>
-The first main bootscript is the <filename>/etc/init.d/rc</filename> script.
+The first main boot script is the <filename>/etc/init.d/rc</filename> script.
A new file <filename>/etc/init.d/rc</filename> is created containing the
following: </para>
@@ -24,8 +24,8 @@ following: </para>
source /etc/init.d/functions
#
-# The print_error_msg function prints an error message when an unforseen
-# error occured that wasn't trapped for some reason by a evaluate_retval
+# The print_error_msg function prints an error message when an unforeseen
+# error occurred that wasn't trapped for some reason by a evaluate_retval
# call or error checking in different ways.
print_error_msg()
@@ -34,7 +34,7 @@ print_error_msg()
echo
$FAILURE
echo -n "You should not read this error message. It means "
- echo "that an unforseen error "
+ echo "that an unforeseen error "
echo -n "took place and subscript $i exited with "
echo "a return value "
echo -n "of $error_value for an unknown reason. If you're able "
diff --git a/chapter07/rcS.xml b/chapter07/rcS.xml
index 7008504c6..7eb6884ab 100644
--- a/chapter07/rcS.xml
+++ b/chapter07/rcS.xml
@@ -2,7 +2,7 @@
<title>Creating the rcS script</title>
<para>
-The second main bootscript is the <filename>rcS</filename> script. Create a
+The second main boot script is the <filename>rcS</filename> script. Create a
new file <filename>/etc/init.d/rcS</filename> containing the following:
</para>