Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorConrad Irwin <conrad.irwin@gmail.com>2011-12-13 03:52:51 +0400
committerJunio C Hamano <gitster@pobox.com>2011-12-13 04:48:54 +0400
commit497215d8811ac7b8955693ceaad0899ecd894ed2 (patch)
tree69e7b24b6dc7a0fad35c7fbb58a2df3f12d192a3 /builtin/stripspace.c
parent10dd3b2bf1444695416c0dac951297acf7d4e5e4 (diff)
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/stripspace.c')
-rw-r--r--builtin/stripspace.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/stripspace.c b/builtin/stripspace.c
index 1288ffcc525..f16986c0ae8 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");