diff options
author | Alex Henrie <alexhenrie24@gmail.com> | 2015-08-26 22:26:36 -0600 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-08-28 11:59:10 -0700 |
commit | b8c1d27577578268c63558e9f83f436afb5af886 (patch) | |
tree | 405fc0db483330e4741c8696fc9f5b805c26ef55 /builtin | |
parent | i18n: pack-objects: mark parseopt strings for translation (diff) | |
download | tgif-b8c1d27577578268c63558e9f83f436afb5af886.tar.xz |
pack-objects: place angle brackets around placeholders in usage strings
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/pack-objects.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/builtin/pack-objects.c b/builtin/pack-objects.c index 5e14064094..06884c2a57 100644 --- a/builtin/pack-objects.c +++ b/builtin/pack-objects.c @@ -20,8 +20,8 @@ #include "thread-utils.h" static const char *pack_usage[] = { - N_("git pack-objects --stdout [options...] [< ref-list | < object-list]"), - N_("git pack-objects [options...] base-name [< ref-list | < object-list]"), + N_("git pack-objects --stdout [<options>...] [< <ref-list> | < <object-list>]"), + N_("git pack-objects [<options>...] <base-name> [< <ref-list> | < <object-list>]"), NULL }; |