summaryrefslogtreecommitdiffstats
path: root/makel.c
diff options
context:
space:
mode:
authorMattias Andrée <m@maandree.se>2026-02-22 14:56:29 +0100
committerMattias Andrée <m@maandree.se>2026-02-22 14:56:29 +0100
commit8b6ff042d0a5f7da13abc45d632755fd09f50a7e (patch)
treee33752523d392d54e4511df1672742c31df1c3a8 /makel.c
parentUpdate e-mail (diff)
downloadmakel-8b6ff042d0a5f7da13abc45d632755fd09f50a7e.tar.gz
makel-8b6ff042d0a5f7da13abc45d632755fd09f50a7e.tar.bz2
makel-8b6ff042d0a5f7da13abc45d632755fd09f50a7e.tar.xz
fix typosHEADmaster
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'makel.c')
-rw-r--r--makel.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/makel.c b/makel.c
index 4a281ba..90f6f60 100644
--- a/makel.c
+++ b/makel.c
@@ -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>,");