Skip to content

Commit

Permalink
help: remove extra blank line after "See 'git --help'" message
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Junio C Hamano committed Oct 27, 2007
1 parent b5d21a4 commit a238917
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion help.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down

0 comments on commit a238917

Please sign in to comment.