aboutsummaryrefslogtreecommitdiffstats
path: root/chapter07/rc.xml
diff options
context:
space:
mode:
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 "