diff options
author | Antoine Pelisse <apelisse@gmail.com> | 2012-11-26 20:21:54 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-11-26 13:27:45 -0800 |
commit | d1eded46fa5ed350ff52654103623090101b3ba6 (patch) | |
tree | 03acd23b1fb77b54fbe845c84c30e1558f455f63 | |
parent | cad06d4d78b52b99d451063db2e6d08c34697d32 (diff) | |
download | git-d1eded46fa5ed350ff52654103623090101b3ba6.tar.gz git-d1eded46fa5ed350ff52654103623090101b3ba6.tar.xz |
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 <apelisse@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | builtin/remote.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 <name> (-a | -d | <branch>])"), + N_("git remote set-head <name> (-a | -d | <branch>)"), NULL }; |