about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/command/command.c2
-rw-r--r--src/otr/otrlibv4.c2
-rw-r--r--src/profanity.c2
-rw-r--r--src/xmpp/iq.c6
-rw-r--r--src/xmpp/message.c2
5 files changed, 7 insertions, 7 deletions
diff --git a/src/command/command.c b/src/command/command.c
index 42fee1ce..9e8283e2 100644
--- a/src/command/command.c
+++ b/src/command/command.c
@@ -513,7 +513,7 @@ static struct cmd_t command_defs[] =
         { "/flash on|off", "Terminal flash on new messages.",
         { "/flash on|off",
           "-------------",
-          "Make the terminal flash when incoming messages are recieved.",
+          "Make the terminal flash when incoming messages are received.",
           "The flash will only occur if you are not in the chat window associated with the user sending the message.",
           "If the terminal doesn't support flashing, it may attempt to beep.",
           NULL } } },
diff --git a/src/otr/otrlibv4.c b/src/otr/otrlibv4.c
index a91bbe43..27b99f06 100644
--- a/src/otr/otrlibv4.c
+++ b/src/otr/otrlibv4.c
@@ -72,7 +72,7 @@ cb_otr_error_message(void *opdata, ConnContext *context,
     switch(err_code)
     {
         case OTRL_ERRCODE_ENCRYPTION_ERROR:
-            return strdup("OTR Error: occured while encrypting a message");
+            return strdup("OTR Error: occurred while encrypting a message");
         case OTRL_ERRCODE_MSG_NOT_IN_PRIVATE:
             return strdup("OTR Error: Sent encrypted message to somebody who is not in a mutual OTR session");
         case OTRL_ERRCODE_MSG_UNREADABLE:
diff --git a/src/profanity.c b/src/profanity.c
index 1692fceb..07c51788 100644
--- a/src/profanity.c
+++ b/src/profanity.c
@@ -179,7 +179,7 @@ prof_handle_activity(void)
 gboolean
 process_input(char *inp)
 {
-    log_debug("Input recieved: %s", inp);
+    log_debug("Input received: %s", inp);
     gboolean result = FALSE;
     g_strstrip(inp);
 
diff --git a/src/xmpp/iq.c b/src/xmpp/iq.c
index 1c9ad0aa..65d20b07 100644
--- a/src/xmpp/iq.c
+++ b/src/xmpp/iq.c
@@ -155,7 +155,7 @@ _error_handler(xmpp_conn_t * const conn, xmpp_stanza_t * const stanza,
     if (id != NULL) {
         log_error("IQ error received, id: %s.", id);
     } else {
-        log_error("IQ error recieved.");
+        log_error("IQ error received.");
     }
 
     return 1;
@@ -434,7 +434,7 @@ static int
 _disco_info_result_handler(xmpp_conn_t * const conn, xmpp_stanza_t * const stanza,
     void * const userdata)
 {
-    log_debug("Recieved diso#info response");
+    log_debug("Received diso#info response");
     const char *id = xmpp_stanza_get_attribute(stanza, STANZA_ATTR_ID);
     const char *from = xmpp_stanza_get_attribute(stanza, STANZA_ATTR_FROM);
 
@@ -603,7 +603,7 @@ _disco_items_result_handler(xmpp_conn_t * const conn, xmpp_stanza_t * const stan
     void * const userdata)
 {
 
-    log_debug("Recieved diso#items response");
+    log_debug("Received diso#items response");
     const char *id = xmpp_stanza_get_attribute(stanza, STANZA_ATTR_ID);
     const char *from = xmpp_stanza_get_attribute(stanza, STANZA_ATTR_FROM);
     GSList *items = NULL;
diff --git a/src/xmpp/message.c b/src/xmpp/message.c
index 8efe90af..84137b04 100644
--- a/src/xmpp/message.c
+++ b/src/xmpp/message.c
@@ -381,7 +381,7 @@ _groupchat_handler(xmpp_conn_t * const conn,
 
     // room not active in profanity
     if (!muc_room_is_active(jid->barejid)) {
-        log_error("Message recieved for inactive chat room: %s", jid->str);
+        log_error("Message received for inactive chat room: %s", jid->str);
         jid_destroy(jid);
         return 1;
     }