diff options
| -rw-r--r-- | makel.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -74,10 +74,10 @@ check_line_continuations(struct line *lines, size_t nlines) if (lines[cont_from].len && !isspace(lines[cont_from].data[lines[cont_from].len - 1])) { /* test cases: cont_without_ws.mk (TODO with i != cont_from + 1) */ warnf_confusing(WC_SPACELESS_CONTINUATION, - "%s:%zu,%zu: <backslash> is proceeded by a non-white space " + "%s:%zu,%zu: <backslash> is preceded by a non-white space " "character at the same time as the next line%s begins with " "a non-white space character, this can cause confusion as " - "the make utility will add a whitespace", + "the make utility will add a white space", lines[cont_from].path, lines[cont_from].lineno, lines[i].lineno, i == cont_from + 1 ? "" : ", that consist of not only a <backslash>,"); |
