From dc0f069ddd15b4f933a2b4e444228b6c523b5f3b Mon Sep 17 00:00:00 2001 From: =?utf8?q?P=C3=A1draig=20Brady?=
Date: Tue, 25 Nov 2025 22:48:37 +0000 Subject: [PATCH] doc: fold: clarify operation of -s in --help * src/fold.c (usage): The description of -s was unclear: - State that we can also break within words. - State that we split on blanks not spaces. - State that we split after the blank, not before. --- src/fold.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fold.c b/src/fold.c index 6dbf013e29..c731653349 100644 --- a/src/fold.c +++ b/src/fold.c @@ -88,7 +88,7 @@ Wrap input lines in each FILE, writing to standard output.\n\ fputs (_("\ -b, --bytes count bytes rather than columns\n\ -c, --characters count characters rather than columns\n\ - -s, --spaces break at spaces\n\ + -s, --spaces break after blanks, or in words greater than WIDTH\n\ -w, --width=WIDTH use WIDTH columns instead of 80\n\ "), stdout); fputs (HELP_OPTION_DESCRIPTION, stdout); -- 2.47.3