diff options
author | Alex Henrie <alexhenrie24@gmail.com> | 2015-10-15 20:22:13 -0600 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-10-16 09:38:32 -0700 |
commit | e7a7401f8ba22995708fb015b7c75f45256e05bf (patch) | |
tree | 0bc3bba1e2f5b2a20b3fca3bf8182dd85e53eaec /builtin | |
parent | b7447679e84ed973430ab19fce87f56857b83068 (diff) | |
download | git-e7a7401f8ba22995708fb015b7c75f45256e05bf.tar.gz |
pull: enclose <options> in brackets in the usage stringpt/pull-builtin
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>
Diffstat (limited to 'builtin')
-rw-r--r-- | builtin/pull.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/pull.c b/builtin/pull.c index 722a83c51b..4f14a69884 100644 --- a/builtin/pull.c +++ b/builtin/pull.c @@ -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 }; |