diff options
author | Conrad Irwin <conrad.irwin@gmail.com> | 2011-12-12 15:52:51 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-12-12 16:48:54 -0800 |
commit | 497215d8811ac7b8955693ceaad0899ecd894ed2 (patch) | |
tree | 69e7b24b6dc7a0fad35c7fbb58a2df3f12d192a3 /builtin | |
parent | 10dd3b2bf1444695416c0dac951297acf7d4e5e4 (diff) | |
download | git-497215d8811ac7b8955693ceaad0899ecd894ed2.tar.gz git-497215d8811ac7b8955693ceaad0899ecd894ed2.tar.xz |
Update documentation for stripspace
Tell the user what this command is intended for, and expand the
description of what it does.
Signed-off-by: Conrad Irwin <conrad.irwin@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin')
-rw-r--r-- | builtin/stripspace.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/stripspace.c b/builtin/stripspace.c index 1288ffcc5..f16986c0a 100644 --- a/builtin/stripspace.c +++ b/builtin/stripspace.c @@ -75,7 +75,7 @@ int cmd_stripspace(int argc, const char **argv, const char *prefix) !strcmp(argv[1], "--strip-comments"))) strip_comments = 1; else if (argc > 1) - usage("git stripspace [-s | --strip-comments] < <stream>"); + usage("git stripspace [-s | --strip-comments] < input"); if (strbuf_read(&buf, 0, 1024) < 0) die_errno("could not read the input"); |