diff options
author | Stéphane Raimbault <stephane.raimbault@gmail.com> | 2011-05-24 16:17:02 +0100 |
---|---|---|
committer | Pádraig Brady <P@draigBrady.com> | 2011-05-24 16:17:02 +0100 |
commit | 9ead32a9be9543af3f1b73080a7391c89b1d784b (patch) | |
tree | b400006e71fda3fe579d93da1a11d5ed73e01e47 | |
parent | 64ceb14984cbeb5d73a19a2ee1cc1c718f46a4de (diff) | |
download | coreutils-9ead32a9be9543af3f1b73080a7391c89b1d784b.tar.xz |
doc: add a missing space in timeout --help
* src/timeout.c (usage): Add a space to be consistent
with other uses of "(the default)" in the documentation.
Signed-off-by: Pádraig Brady <P@draigBrady.com>
-rw-r--r-- | src/timeout.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/timeout.c b/src/timeout.c index ea11c42b9..649e1768d 100644 --- a/src/timeout.c +++ b/src/timeout.c @@ -148,8 +148,8 @@ Mandatory arguments to long options are mandatory for short options too.\n\ fputs (_("\n\ DURATION is an integer with an optional suffix:\n\ -`s' for seconds(the default), `m' for minutes, `h' for hours or `d' for days.\n\ -"), stdout); +`s' for seconds (the default), `m' for minutes, `h' for hours \ +or `d' for days.\n"), stdout); fputs (_("\n\ If the command times out, then exit with status 124. Otherwise, exit\n\ |