aboutsummaryrefslogtreecommitdiffstats
path: root/chapter07/rc.xml
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/rc.xml
parent2f86e053737bbad5ce63083b839ec55404e87082 (diff)
Spell Checks
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@457 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter07/rc.xml')
-rw-r--r--chapter07/rc.xml8
1 files changed, 4 insertions, 4 deletions
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 "