Skip to content

Commit

Permalink
Remove hyphen from "git-command" in two error messages
Browse files Browse the repository at this point in the history
Signed-off-by: Pete Harlan <pgit@pcharlan.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Pete Harlan authored and Junio C Hamano committed Feb 16, 2010
1 parent ef00650 commit 7283bbc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion git.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down
2 changes: 1 addition & 1 deletion help.c
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 7283bbc

Please sign in to comment.