From 9e5274cd1be9e6e757e2c81beb7755df1ce3c46e Mon Sep 17 00:00:00 2001 From: =?utf8?q?P=C3=A1draig=20Brady?=
Date: Mon, 23 Sep 2024 21:31:59 +0100 Subject: [PATCH] doc: sort: be more descriptive than 'manual' * src/sort.c (usage): Don't mention the ambiguous "manual", rather "full documentation", echoing the language at the bottom of each coreutils man page. Fixes https://bugs.gnu.org/72914 --- src/sort.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/sort.c b/src/sort.c index 3357733c10..4230d32d84 100644 --- a/src/sort.c +++ b/src/sort.c @@ -445,7 +445,9 @@ Ordering options:\n\ "), stdout); fputs (_("\ -n, --numeric-sort compare according to string numerical value;\n\ - see manual for which strings are supported\n\ + see full documentation for supported strings\n\ +"), stdout); + fputs (_("\ -R, --random-sort shuffle, but group identical keys. See shuf(1)\n\ --random-source=FILE get random bytes from FILE\n\ -r, --reverse reverse the result of comparisons\n\ -- 2.47.2