Skip to content

Commit

Permalink
Fix typo in remote set-head usage
Browse files Browse the repository at this point in the history
parenthesis are not matching in `builtin_remote_sethead_usage`
as a square bracket is closing something never opened.

Signed-off-by: Antoine Pelisse <apelisse@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Antoine Pelisse authored and Junio C Hamano committed Nov 26, 2012
1 parent cad06d4 commit d1eded4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builtin/remote.c
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ static const char * const builtin_remote_rm_usage[] = {
};

static const char * const builtin_remote_sethead_usage[] = {
N_("git remote set-head <name> (-a | -d | <branch>])"),
N_("git remote set-head <name> (-a | -d | <branch>)"),
NULL
};

Expand Down

0 comments on commit d1eded4

Please sign in to comment.