about summary refs log tree commit diff stats
path: root/src/tools/autocomplete.c
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2014-07-15 21:30:23 +0100
committerJames Booth <boothj5@gmail.com>2014-07-15 21:30:23 +0100
commitcc62fe376cd40cf3ad38e16634a32099825579d0 (patch)
treed43bb278269ba3fc01486ad882cfbd480907db74 /src/tools/autocomplete.c
parent2f3234a5f50639911add9a24c32095a92791502e (diff)
downloadprofani-tty-cc62fe376cd40cf3ad38e16634a32099825579d0.tar.gz
Finished chat room nick autocomplete
Diffstat (limited to 'src/tools/autocomplete.c')
-rw-r--r--src/tools/autocomplete.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/autocomplete.c b/src/tools/autocomplete.c
index 9a57ddac..424fed84 100644
--- a/src/tools/autocomplete.c
+++ b/src/tools/autocomplete.c
@@ -171,7 +171,7 @@ autocomplete_complete(Autocomplete ac, gchar *search_str, gboolean quote)
 
     // subsequent search attempt
     } else {
-        // search from here+1 tp end
+        // search from here+1 to end
         found = _search_from(ac, g_slist_next(ac->last_found), quote);
         if (found != NULL)
             return found;