diff options
author | Pádraig Brady <P@draigBrady.com> | 2015-01-01 18:05:10 +0000 |
---|---|---|
committer | Pádraig Brady <P@draigBrady.com> | 2015-01-01 18:12:29 +0000 |
commit | 272aa7cad6c1cf940e17b29c46ee9ff363cb9664 (patch) | |
tree | 921a634cfa0ce94b5436dac10d754672d8a941ec /src | |
parent | 8c819693a5c368e49649fa5dbe1d5ad1a74ecf56 (diff) | |
download | coreutils-272aa7cad6c1cf940e17b29c46ee9ff363cb9664.tar.xz |
doc: fix man page formatting for split CHUNKS options
* src/split.c (usage): Indent the info on CHUNKS so that
help2man can match it and align appropriately in its own section.
Fixes http://bugs.gnu.org/19228
Diffstat (limited to 'src')
-rw-r--r-- | src/split.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/split.c b/src/split.c index d41c8359e..ef672f4fd 100644 --- a/src/split.c +++ b/src/split.c @@ -234,12 +234,12 @@ is -, read standard input.\n\ emit_size_note (); fputs (_("\n\ CHUNKS may be:\n\ -N split into N files based on size of input\n\ -K/N output Kth of N to stdout\n\ -l/N split into N files without splitting lines\n\ -l/K/N output Kth of N to stdout without splitting lines\n\ -r/N like 'l' but use round robin distribution\n\ -r/K/N likewise but only output Kth of N to stdout\n\ + N split into N files based on size of input\n\ + K/N output Kth of N to stdout\n\ + l/N split into N files without splitting lines\n\ + l/K/N output Kth of N to stdout without splitting lines\n\ + r/N like 'l' but use round robin distribution\n\ + r/K/N likewise but only output Kth of N to stdout\n\ "), stdout); emit_ancillary_info (PROGRAM_NAME); } |