pull: enclose <options> in brackets in the usage string
authorAlex Henrie <alexhenrie24@gmail.com>
Fri, 16 Oct 2015 02:22:13 +0000 (20:22 -0600)
committerJunio C Hamano <gitster@pobox.com>
Fri, 16 Oct 2015 16:38:32 +0000 (09:38 -0700)
All the other placeholders are already shown that way.

Signed-off-by: Alex Henrie <alexhenrie24@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/pull.c

index 722a83c..4f14a69 100644 (file)
@@ -65,7 +65,7 @@ static int parse_opt_rebase(const struct option *opt, const char *arg, int unset
 }
 
 static const char * const pull_usage[] = {
-       N_("git pull [options] [<repository> [<refspec>...]]"),
+       N_("git pull [<options>] [<repository> [<refspec>...]]"),
        NULL
 };