about summary refs log tree commit diff stats
path: root/src/ui
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui')
-rw-r--r--src/ui/console.c2
-rw-r--r--src/ui/mucwin.c2
-rw-r--r--src/ui/notifier.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/ui/console.c b/src/ui/console.c
index 270c5943..f34f6f03 100644
--- a/src/ui/console.c
+++ b/src/ui/console.c
@@ -810,7 +810,7 @@ cons_show_disco_info(const char* jid, GSList* identities, GSList* features)
             cons_show("  Identities");
         }
         while (identities) {
-            DiscoIdentity* identity = identities->data; // anme trpe, cat
+            DiscoIdentity* identity = identities->data; // name type, category
             GString* identity_str = g_string_new("    ");
             if (identity->name) {
                 identity_str = g_string_append(identity_str, identity->name);
diff --git a/src/ui/mucwin.c b/src/ui/mucwin.c
index a4bcc191..550b05e2 100644
--- a/src/ui/mucwin.c
+++ b/src/ui/mucwin.c
@@ -196,7 +196,7 @@ mucwin_room_disco_info(ProfMucWin* mucwin, GSList* identities, GSList* features)
             win_println(window, THEME_DEFAULT, "!", "Identities:");
         }
         while (identities) {
-            DiscoIdentity* identity = identities->data; // anme trpe, cat
+            DiscoIdentity* identity = identities->data; // name, type, category
             GString* identity_str = g_string_new("  ");
             if (identity->name) {
                 identity_str = g_string_append(identity_str, identity->name);
diff --git a/src/ui/notifier.c b/src/ui/notifier.c
index 92ebf835..07a542af 100644
--- a/src/ui/notifier.c
+++ b/src/ui/notifier.c
@@ -291,7 +291,7 @@ notify(const char* const message, int timeout, const char* const category)
 
     int res = system(notify_command->str);
     if (res == -1) {
-        log_error("Could not send desktop notificaion.");
+        log_error("Could not send desktop notification.");
     }
 
     g_string_free(notify_command, TRUE);