From: Antoine Pelisse Date: Mon, 26 Nov 2012 19:21:54 +0000 (+0100) Subject: Fix typo in remote set-head usage X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=d1eded46fa5ed350ff52654103623090101b3ba6;p=git.git Fix typo in remote set-head usage parenthesis are not matching in `builtin_remote_sethead_usage` as a square bracket is closing something never opened. Signed-off-by: Antoine Pelisse Signed-off-by: Junio C Hamano --- diff --git a/builtin/remote.c b/builtin/remote.c index a5a4b2323..937484d7c 100644 --- a/builtin/remote.c +++ b/builtin/remote.c @@ -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 (-a | -d | ])"), + N_("git remote set-head (-a | -d | )"), NULL };