From 051069606b4bf76e55171bf2952778661bf2337b Mon Sep 17 00:00:00 2001 From: Jfreegman Date: Tue, 24 Sep 2013 16:18:22 -0400 Subject: [PATCH] typo and slight word change --- src/chat.c | 2 +- src/commands.c | 2 +- src/groupchat.c | 2 +- src/prompt.c | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/chat.c b/src/chat.c index 17d323d..7768035 100644 --- a/src/chat.c +++ b/src/chat.c @@ -118,7 +118,7 @@ static void print_chat_help(ChatContext *ctx) wprintw(ctx->history, " /help : Print this message again\n"); wattron(ctx->history, A_BOLD); - wprintw(ctx->history, "\n * Command argument messages must be enclosed in quotation marks.\n"); + wprintw(ctx->history, "\n * Argument messages must be enclosed in quotation marks.\n"); wattroff(ctx->history, A_BOLD); wattroff(ctx->history, COLOR_PAIR(CYAN)); diff --git a/src/commands.c b/src/commands.c index 5a57af4..a2c7db1 100644 --- a/src/commands.c +++ b/src/commands.c @@ -192,7 +192,7 @@ void cmd_groupchat(WINDOW *window, ToxWindow *prompt, Tox *m, int argc, char **a int groupnum = tox_add_groupchat(m); if (groupnum == -1) { - wprintw(window, "Group chat instnace failed to initialize.\n"); + wprintw(window, "Group chat instance failed to initialize.\n"); return; } diff --git a/src/groupchat.c b/src/groupchat.c index 6df0efb..3527194 100644 --- a/src/groupchat.c +++ b/src/groupchat.c @@ -88,7 +88,7 @@ static void print_groupchat_help(ChatContext *ctx) wprintw(ctx->history, " /help : Print this message again\n"); wattron(ctx->history, A_BOLD); - wprintw(ctx->history, "\n * Command argument messages must be enclosed in quotation marks.\n"); + wprintw(ctx->history, "\n * Argument messages must be enclosed in quotation marks.\n"); wattroff(ctx->history, A_BOLD); wattroff(ctx->history, COLOR_PAIR(CYAN)); diff --git a/src/prompt.c b/src/prompt.c index 08d82d4..9c9ddc3 100644 --- a/src/prompt.c +++ b/src/prompt.c @@ -99,7 +99,7 @@ static void print_prompt_help(ToxWindow *self) wprintw(self->window, " /clear : Clear this window\n"); wattron(self->window, A_BOLD); - wprintw(self->window, " * Command argument messages must be enclosed in quotation marks.\n"); + wprintw(self->window, " * Argument messages must be enclosed in quotation marks.\n"); wprintw(self->window, " * Use the TAB key to navigate through the tabs.\n"); wattroff(self->window, A_BOLD);