From 362980536cbc9416a32b5ca97f13093ccb630359 Mon Sep 17 00:00:00 2001 From: David Walter Seikel Date: Tue, 28 Jan 2014 01:14:45 +1000 Subject: Fix some typos. --- boxes.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/boxes.c b/boxes.c index 7a0a6d5..5420ed1 100644 --- a/boxes.c +++ b/boxes.c @@ -1902,7 +1902,7 @@ void editLine(view *view, int16_t X, int16_t Y, int16_t W, int16_t H) buffer[0] = 0; } - // TODO - If the view->context has on event handler, use it, otherwise look up the specific event handler in the context modes ourselves. + // TODO - If the view->context has an event handler, use it, otherwise look up the specific event handler in the context modes ourselves. if (command[0]) // Search for a bound key. { if (BUFFER_LEN <= strlen(command)) @@ -2090,7 +2090,7 @@ struct context simpleEmacs = // Construct a simple joe / wordstar editor, using joe is the reference, seems to be the popular Unix variant. // Esc x starts up the command line. // Has multi control key combos. Mostly Ctrl-K, Ctrl-[ (Esc), (Ctrl-B, Ctrl-Q in wordstar and delphi), but might be others. -// Can't find a single list of comand mappings for joe, gotta search all over. sigh +// Can't find a single list of command mappings for joe, gotta search all over. sigh // Even the command line keystroke I stumbled on (Esc x) is not documented. // Note that you don't have to let go of the Ctrl key for the second keystroke, but you can. @@ -2387,7 +2387,7 @@ struct context simpleNano = // Construct a simple vi editor. -// Only vi is not so sibple. lol +// Only vi is not so simple. lol // The "command line" modes are /, ?, :, and !, // / is regex search. // ? is regex search backwards. -- cgit v1.1