about summary refs log tree commit diff stats
path: root/src/ui
diff options
context:
space:
mode:
authorMichael Vetter <jubalh@iodoru.org>2020-12-10 09:24:32 +0100
committerMichael Vetter <jubalh@iodoru.org>2020-12-10 09:24:32 +0100
commita94378f206c96ff4b3687b001b5a42a7db41ce72 (patch)
treeee7bbba2acaa408638c7e3cfeb6027cc3f7d729f /src/ui
parentf0bfa6929673cdcf016b15ea4413e67c6a07291d (diff)
downloadprofani-tty-a94378f206c96ff4b3687b001b5a42a7db41ce72.tar.gz
Fix various typos
Diffstat (limited to 'src/ui')
-rw-r--r--src/ui/console.c8
-rw-r--r--src/ui/mucwin.c2
-rw-r--r--src/ui/window_list.c2
3 files changed, 6 insertions, 6 deletions
diff --git a/src/ui/console.c b/src/ui/console.c
index 306b13d5..e35e4350 100644
--- a/src/ui/console.c
+++ b/src/ui/console.c
@@ -1850,10 +1850,10 @@ void
 cons_winpos_setting(void)
 {
     ProfWinPlacement* placement = prefs_get_win_placement();
-    cons_show("Title bar postion (/titlebar)       : %d", placement->titlebar_pos);
-    cons_show("Main window postion (/mainwin)      : %d", placement->mainwin_pos);
-    cons_show("Status bar postion (/statusbar)     : %d", placement->statusbar_pos);
-    cons_show("Input window postion (/inputwin)    : %d", placement->inputwin_pos);
+    cons_show("Title bar position (/titlebar)       : %d", placement->titlebar_pos);
+    cons_show("Main window position (/mainwin)      : %d", placement->mainwin_pos);
+    cons_show("Status bar position (/statusbar)     : %d", placement->statusbar_pos);
+    cons_show("Input window position (/inputwin)    : %d", placement->inputwin_pos);
     prefs_free_win_placement(placement);
 }
 
diff --git a/src/ui/mucwin.c b/src/ui/mucwin.c
index b89a990f..104d0564 100644
--- a/src/ui/mucwin.c
+++ b/src/ui/mucwin.c
@@ -450,7 +450,7 @@ _mucwin_print_triggers(ProfWin* window, const char* const message, GList* trigge
             continue;
         }
 
-        // found, repace vars if earlier than previous
+        // found, replace vars if earlier than previous
         int trigger_pos = trigger_ptr - message_lower;
         if (first_trigger_pos == -1 || trigger_pos < first_trigger_pos) {
             first_trigger_pos = trigger_pos;
diff --git a/src/ui/window_list.c b/src/ui/window_list.c
index c9ae8ba9..475a8867 100644
--- a/src/ui/window_list.c
+++ b/src/ui/window_list.c
@@ -528,7 +528,7 @@ wins_close_by_num(int i)
 
         ProfWin* window = wins_get_by_num(i);
         if (window) {
-            // cancel upload proccesses of this window
+            // cancel upload processes of this window
             http_upload_cancel_processes(window);
 
             switch (window->type) {