]> git.ipfire.org Git - thirdparty/git.git/commitdiff
Fix typo in remote set-head usage
authorAntoine Pelisse <apelisse@gmail.com>
Mon, 26 Nov 2012 19:21:54 +0000 (20:21 +0100)
committerJunio C Hamano <gitster@pobox.com>
Mon, 26 Nov 2012 21:27:45 +0000 (13:27 -0800)
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>
builtin/remote.c

index a5a4b232310a27c1d67dd6a1bce252cd62cfa52d..937484d7c77c448995481f246c1afe2dedd4c561 100644 (file)
@@ -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
 };