diff options
author | Jim Meyering <jim@meyering.net> | 2005-08-18 22:26:42 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2005-08-18 22:26:42 +0000 |
commit | 834d8e96c7ff9b1224b1b5ab652f9ee3fc8ac633 (patch) | |
tree | 117b8089045efaf42c4a228943820dbbed3b8c89 | |
parent | 12513039fcf2fa16ca7370ffe35732854dd149ec (diff) | |
download | coreutils-834d8e96c7ff9b1224b1b5ab652f9ee3fc8ac633.tar.xz |
(usage) [-b,-t]: Ensure that there are at least two
spaces between each option and the corresponding description -- this
lets help2man format entries properly. Reported by Edward Welbourne.
-rw-r--r-- | src/sort.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sort.c b/src/sort.c index 7227085a8..b34d6f7d2 100644 --- a/src/sort.c +++ b/src/sort.c @@ -294,7 +294,7 @@ Ordering options:\n\ \n\ "), stdout); fputs (_("\ - -b, --ignore-leading-blanks ignore leading blanks\n\ + -b, --ignore-leading-blanks ignore leading blanks\n\ -d, --dictionary-order consider only blanks and alphanumeric characters\n\ -f, --ignore-case fold lower case to upper case characters\n\ "), stdout); @@ -317,7 +317,7 @@ Other options:\n\ -S, --buffer-size=SIZE use SIZE for main memory buffer\n\ "), stdout); printf (_("\ - -t, --field-separator=SEP use SEP instead of non-blank to blank transition\n\ + -t, --field-separator=SEP use SEP instead of non-blank to blank transition\n\ -T, --temporary-directory=DIR use DIR for temporaries, not $TMPDIR or %s;\n\ multiple options specify multiple directories\n\ -u, --unique with -c, check for strict ordering;\n\ |