From 4b2f9448f70f9b4b4441f8b52fe69266e9aaf808 Mon Sep 17 00:00:00 2001 From: Jack Henschel Date: Tue, 27 Sep 2016 16:20:37 +0200 Subject: [PATCH] Correct minor spelling errors --- src/command/cmd_funcs.c | 4 ++-- src/otr/otrlibv4.c | 2 +- src/ui/notifier.c | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/command/cmd_funcs.c b/src/command/cmd_funcs.c index d79b713c..fba45d93 100644 --- a/src/command/cmd_funcs.c +++ b/src/command/cmd_funcs.c @@ -6486,7 +6486,7 @@ cmd_pgp(ProfWin *window, const char *const command, gchar **args) } chatwin->pgp_send = TRUE; - ui_current_print_formatted_line('!', 0, "PGP encyption enabled."); + ui_current_print_formatted_line('!', 0, "PGP encryption enabled."); return TRUE; } @@ -6509,7 +6509,7 @@ cmd_pgp(ProfWin *window, const char *const command, gchar **args) } chatwin->pgp_send = FALSE; - ui_current_print_formatted_line('!', 0, "PGP encyption disabled."); + ui_current_print_formatted_line('!', 0, "PGP encryption disabled."); return TRUE; } diff --git a/src/otr/otrlibv4.c b/src/otr/otrlibv4.c index ab39e81c..af41baed 100644 --- a/src/otr/otrlibv4.c +++ b/src/otr/otrlibv4.c @@ -120,7 +120,7 @@ cb_handle_msg_event(void *opdata, OtrlMessageEvent msg_event, ui_handle_otr_error(context->username, "OTR: Policy requires encryption, but attempting to send an unencrypted message."); break; case OTRL_MSGEVENT_ENCRYPTION_ERROR: - ui_handle_otr_error(context->username, "OTR: Error occured while encrypting a message, message not sent."); + ui_handle_otr_error(context->username, "OTR: Error occurred while encrypting a message, message not sent."); break; case OTRL_MSGEVENT_CONNECTION_ENDED: ui_handle_otr_error(context->username, "OTR: Message not sent because contact has ended the private conversation."); diff --git a/src/ui/notifier.c b/src/ui/notifier.c index 4c7bc8df..c2be3be7 100644 --- a/src/ui/notifier.c +++ b/src/ui/notifier.c @@ -140,7 +140,7 @@ notify_subscription(const char *const from) { GString *message = g_string_new("Subscription request: \n"); g_string_append(message, from); - notify(message->str, 10000, "Incomming message"); + notify(message->str, 10000, "Incoming message"); g_string_free(message, TRUE); }