diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2016-01-31 08:35:44 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2016-01-31 08:35:44 +0100 |
commit | 78aea5df6c97c95e013c34f120ee988d51e0d565 (patch) | |
tree | d9b9f6e2d43831c21b6cb0348ad780ca606cf3d8 /src/core | |
parent | c8710e28cb476097e23ed7086550270c03000c89 (diff) | |
download | weechat-78aea5df6c97c95e013c34f120ee988d51e0d565.zip |
core: fix typo in a comment
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/wee-string.c | 2 |
1 files changed, 1 insertions, 1 deletions
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)) |