spelling and typo fixes

Submitted for 3.7.0; all but one also apply to 3.6.3.

I rewrote the curses terminal-too-small message instead of just
fixing the spelling of "minumum".
This commit is contained in:
PatR
2019-12-11 12:35:45 -08:00
parent 850d37b47f
commit 8a57029503
12 changed files with 18 additions and 14 deletions

View File

@@ -1591,7 +1591,7 @@ struct obj *otmp;
switch (tt) {
case ARROW_TRAP:
if (!otmp) {
impossible("steed hit by non-existant arrow?");
impossible("steed hit by non-existent arrow?");
return 0;
}
trapkilled = thitm(8, steed, otmp, 0, FALSE);
@@ -1599,7 +1599,7 @@ struct obj *otmp;
break;
case DART_TRAP:
if (!otmp) {
impossible("steed hit by non-existant dart?");
impossible("steed hit by non-existent dart?");
return 0;
}
trapkilled = thitm(7, steed, otmp, 0, FALSE);