diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2013-03-17 12:55:20 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2013-03-17 12:55:20 +0100 |
commit | 149c77decdbc81979af5aa9853e346f9beebca79 (patch) | |
tree | 99ba28af0c9747425ff923feb437f6ccc1ad3f88 /src/core/wee-string.c | |
parent | 46677c79fcb0aa57ee2129f959c76267a8f08d8d (diff) | |
download | weechat-149c77decdbc81979af5aa9853e346f9beebca79.zip |
core: fix typos in many comments and some strings
Diffstat (limited to 'src/core/wee-string.c')
-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 443f22f02..94402b52c 100644 --- a/src/core/wee-string.c +++ b/src/core/wee-string.c @@ -1491,7 +1491,7 @@ string_split_command (const char *command, char separator) buffer[str_idx] = '\0'; str_idx = -1; p = buffer; - /* strip white spaces a the begining of the line */ + /* strip white spaces a the beginning of the line */ while (*p == ' ') p++; if (p && p[0]) array[arr_idx++] = strdup (p); |