From 78aea5df6c97c95e013c34f120ee988d51e0d565 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Helleu?= Date: Sun, 31 Jan 2016 08:35:44 +0100 Subject: [PATCH] core: fix typo in a comment --- src/core/wee-string.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/wee-string.c b/src/core/wee-string.c index 02797d381..e40538176 100644 --- a/src/core/wee-string.c +++ b/src/core/wee-string.c @@ -2861,7 +2861,7 @@ string_input_for_buffer (const char *string) pos_space = strchr (string + 1, ' '); /* - * if there's no other '/' or if '/' is after first space, + * if there are no other '/' or if '/' is after first space, * then it is a command, and return NULL */ if (!pos_slash || (pos_space && pos_slash > pos_space))