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/inputwin.c2
-rw-r--r--src/ui/notifier.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/inputwin.c b/src/ui/inputwin.c
index 8ae3abff..8bebfce8 100644
--- a/src/ui/inputwin.c
+++ b/src/ui/inputwin.c
@@ -272,7 +272,7 @@ _clear_input(void)
 /*
  * Deal with command editing, return 1 if ch was an edit
  * key press: up, down, left, right or backspace
- * return 0 if it wasnt
+ * return 0 if it wasn't
  */
 static int
 _handle_edit(int result, const wint_t ch, char *input, int *size)
diff --git a/src/ui/notifier.c b/src/ui/notifier.c
index aef4d975..6673edb0 100644
--- a/src/ui/notifier.c
+++ b/src/ui/notifier.c
@@ -121,7 +121,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);
 }