From: Pete Harlan Date: Mon, 15 Feb 2010 23:33:18 +0000 (-0800) Subject: Remove hyphen from "git-command" in two error messages X-Git-Tag: v1.7.0.1~3^2~2 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=7283bbc70a55d7364fbeaefc1009c03fcfc8d929;p=git.git Remove hyphen from "git-command" in two error messages Signed-off-by: Pete Harlan Signed-off-by: Junio C Hamano --- diff --git a/git.c b/git.c index 11544cdb4..a83cab700 100644 --- a/git.c +++ b/git.c @@ -516,7 +516,7 @@ int main(int argc, const char **argv) break; if (was_alias) { fprintf(stderr, "Expansion of alias '%s' failed; " - "'%s' is not a git-command\n", + "'%s' is not a git command\n", cmd, argv[0]); exit(1); } diff --git a/help.c b/help.c index 9da97d746..7f4928e45 100644 --- a/help.c +++ b/help.c @@ -350,7 +350,7 @@ const char *help_unknown_cmd(const char *cmd) return assumed; } - fprintf(stderr, "git: '%s' is not a git-command. See 'git --help'.\n", cmd); + fprintf(stderr, "git: '%s' is not a git command. See 'git --help'.\n", cmd); if (SIMILAR_ENOUGH(best_similarity)) { fprintf(stderr, "\nDid you mean %s?\n",