diff options
author | Jim Meyering <jim@meyering.net> | 2004-02-17 10:52:49 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2004-02-17 10:52:49 +0000 |
commit | 317f26ba57a5fb41d1676048d6c4104afa1db712 (patch) | |
tree | 5b42d044d25d2a56e40bf0631aea2277b9b469b2 /src | |
parent | 9bfc6244c4fd53c50c2e01915b54ae2c584a79a3 (diff) | |
download | coreutils-317f26ba57a5fb41d1676048d6c4104afa1db712.tar.xz |
(usage) [-u]: Add punctuation so that the description in
the help2man-generated (line-joined) man page is more readable.
Reported by Tim Waugh.
[-T]: Add a semicolon, for the same reason.
Diffstat (limited to 'src')
-rw-r--r-- | src/sort.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sort.c b/src/sort.c index 1ad3e06c9..b67582a03 100644 --- a/src/sort.c +++ b/src/sort.c @@ -311,10 +311,10 @@ Other options:\n\ "), stdout); printf (_("\ -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\ + -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\ - otherwise: output only the first of an equal run\n\ + -u, --unique with -c, check for strict ordering;\n\ + without -c, output only the first of an equal run\n\ "), DEFAULT_TMPDIR); fputs (_("\ -z, --zero-terminated end lines with 0 byte, not newline\n\ |