diff options
author | Pete Harlan <pgit@pcharlan.com> | 2010-02-15 15:33:18 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-02-15 18:20:54 -0800 |
commit | 7283bbc70a55d7364fbeaefc1009c03fcfc8d929 (patch) | |
tree | f4bf0a6aa67026ded873b3c78766ee977ac73db3 /help.c | |
parent | ef0065034a68edfc0ffed9965bb895073ad710db (diff) | |
download | git-7283bbc70a55d7364fbeaefc1009c03fcfc8d929.tar.gz |
Remove hyphen from "git-command" in two error messages
Signed-off-by: Pete Harlan <pgit@pcharlan.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'help.c')
-rw-r--r-- | help.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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", |