diff options
author | Štěpán Němec <stepan.nemec@gmail.com> | 2010-10-08 19:31:19 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-10-08 12:31:08 -0700 |
commit | 884220653f2abd381d94c5902e4cb0f237504d03 (patch) | |
tree | b625df1812337f8eb08af80094c6dc5af3e81705 /builtin | |
parent | efc39d6daf6518dac346d2716bf6b1031f73aecf (diff) | |
download | git-884220653f2abd381d94c5902e4cb0f237504d03.tar.gz git-884220653f2abd381d94c5902e4cb0f237504d03.tar.xz |
Put a space between `<' and argument in pack-objects usage string
This makes it cosistent with other places (including the
git-pack-objects(1) manpage itself) and avoids possible confusion (I,
for one, mistook `<object-list' for a `<object-list>' typo at first when
preparing this series).
Signed-off-by: Štěpán Němec <stepnem@gmail.com>
Acked-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin')
-rw-r--r-- | builtin/pack-objects.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/pack-objects.c b/builtin/pack-objects.c index 26f23041f..f8eba53c8 100644 --- a/builtin/pack-objects.c +++ b/builtin/pack-objects.c @@ -31,7 +31,7 @@ static const char pack_usage[] = " [--threads=<n>] [--non-empty] [--revs [--unpacked | --all]]\n" " [--reflog] [--stdout | base-name] [--include-tag]\n" " [--keep-unreachable | --unpack-unreachable]\n" - " [<ref-list | <object-list]"; + " [< ref-list | < object-list]"; struct object_entry { struct pack_idx_entry idx; |