Global spelling fix s/recieve/receive/ across codebase

This includes some user-visible messages and help files, so if anyone has
hooked them with /ON WINDOW their hooks will need updating.
This commit is contained in:
Kevin Easton
2015-10-04 09:06:38 +11:00
parent 726884b0b0
commit ce3fd79652
24 changed files with 41 additions and 39 deletions

View File

@@ -823,7 +823,7 @@ NAP_COMM(cmd_error)
nap_error = 11;
}
else
nap_say("%s", cparse("Recieved error for [$0] $1-.", "%d %s", cmd, args ? args : empty_string));
nap_say("%s", cparse("Received error for [$0] $1-.", "%d %s", cmd, args ? args : empty_string));
}
if (nap_error > 10)
{
@@ -836,7 +836,7 @@ NAP_COMM(cmd_error)
NAP_COMM(cmd_unknown)
{
if (do_hook(MODULE_LIST, "NAP UNKNOWN %s", args))
nap_say("%s", cparse("Recieved unknown [$0] $1-.", "%d %s", cmd, args));
nap_say("%s", cparse("Received unknown [$0] $1-.", "%d %s", cmd, args));
return 0;
}