Code

help: remove extra blank line after "See 'git --help'" message
authorJunio C Hamano <gitster@pobox.com>
Sat, 27 Oct 2007 06:26:41 +0000 (23:26 -0700)
committerJunio C Hamano <gitster@pobox.com>
Sat, 27 Oct 2007 06:26:41 +0000 (23:26 -0700)
The double LF were there only because we gave a list of common
commands.  WIth the list gone, there is no reason to have the
extra blank line.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
help.c

diff --git a/help.c b/help.c
index 814a8cd02a4bcd80f68b406116b77ee8acbc3566..e5662d9014e758fee00b890e06ffc66cd4aa0291 100644 (file)
--- a/help.c
+++ b/help.c
@@ -185,7 +185,7 @@ static void show_man_page(const char *git_cmd)
 
 void help_unknown_cmd(const char *cmd)
 {
-       fprintf(stderr, "git: '%s' is not a git-command. See --help\n\n", cmd);
+       fprintf(stderr, "git: '%s' is not a git-command. See 'git --help'.\n", cmd);
        exit(1);
 }