about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/profanity.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/profanity.c b/src/profanity.c
index ce7dd35b..540b6085 100644
--- a/src/profanity.c
+++ b/src/profanity.c
@@ -187,7 +187,7 @@ process_input(char *inp)
     if (strlen(inp) == 0) {
         result = TRUE;
 
-    // habdle command if input starts with a '/'
+    // handle command if input starts with a '/'
     } else if (inp[0] == '/') {
         char *inp_cpy = strdup(inp);
         char *command = strtok(inp_cpy, " ");