diff options
author | Daniel Gustafsson <daniel@yesql.se> | 2020-09-30 21:10:14 +0200 |
---|---|---|
committer | Daniel Gustafsson <daniel@yesql.se> | 2020-09-30 21:10:14 +0200 |
commit | 2aac895fb6a7b19dada73f55041b710670befa49 (patch) | |
tree | 751f890d896b4db7f40dc6c56e7c9fc67736ea2e /src | |
parent | 021f2c25fd7fbe2887ed156354f8919c0d06a412 (diff) | |
download | curl-2aac895fb6a7b19dada73f55041b710670befa49.tar.gz |
src: Consistently spell whitespace without whitespace
Whitespace is spelled without a space between white and space, so
make sure to consistently spell it that way across the codebase.
Closes #6023
Reviewed-by: Daniel Stenberg <daniel@haxx.se>
Reviewed-by: Emil Engler <me@emilengler.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/tool_parsecfg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tool_parsecfg.c b/src/tool_parsecfg.c index f09180ed4..abd493ae5 100644 --- a/src/tool_parsecfg.c +++ b/src/tool_parsecfg.c @@ -227,7 +227,7 @@ int parseconfig(const char *filename, struct GlobalConfig *global) break; default: warnf(operation->global, "%s:%d: warning: '%s' uses unquoted " - "white space in the line that may cause side-effects!\n", + "whitespace in the line that may cause side-effects!\n", filename, lineno, option); } } |