aboutsummaryrefslogtreecommitdiff
path: root/sys/boot/forth
diff options
context:
space:
mode:
authorToomas Soome <tsoome@FreeBSD.org>2016-11-09 21:28:46 +0000
committerToomas Soome <tsoome@FreeBSD.org>2016-11-09 21:28:46 +0000
commitfc0d6c840e265651bd67db7d5781e6096874f58d (patch)
tree5f5dbaef9eae2dd1a28904d157dc0c585da86f6f /sys/boot/forth
parentebcddc721771e8c70f98b61576242d2e4983682b (diff)
Notes
Diffstat (limited to 'sys/boot/forth')
-rw-r--r--sys/boot/forth/support.4th4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/boot/forth/support.4th b/sys/boot/forth/support.4th
index aac258d805391..7ce9e5289acfa 100644
--- a/sys/boot/forth/support.4th
+++ b/sys/boot/forth/support.4th
@@ -1115,7 +1115,7 @@ string current_file_name_ref \ used to print the file name
: load_error_message verbose? if ." failed!" cr then ;
-: load_succesful_message verbose? if ." ok" cr then ;
+: load_successful_message verbose? if ." ok" cr then ;
: load_module
load_parameters load
@@ -1133,7 +1133,7 @@ string current_file_name_ref \ used to print the file name
then
else
after_load
- load_succesful_message true \ Successful, do not retry
+ load_successful_message true \ Successful, do not retry
then
until
;