diff options
author | Pete Harlan <pgit@pcharlan.com> | 2010-02-16 00:33:18 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-02-16 03:20:54 +0100 |
commit | 7283bbc70a55d7364fbeaefc1009c03fcfc8d929 (patch) | |
tree | f4bf0a6aa67026ded873b3c78766ee977ac73db3 /help.c | |
parent | fix minor memory leak in get_tree_entry() (diff) | |
download | git-7283bbc70a55d7364fbeaefc1009c03fcfc8d929.tar.xz git-7283bbc70a55d7364fbeaefc1009c03fcfc8d929.zip |
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 '')
-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", |