cat-file: don't whitespace-pad "(...)" in SYNOPSIS and usage output
commit83dc443439ca0fdc9f99fc1ed623d0749ef637ed
authorÆvar Arnfjörð Bjarmason <avarab@gmail.com>
Mon, 10 Jan 2022 22:08:45 +0000 (10 23:08 +0100)
committerJunio C Hamano <gitster@pobox.com>
Wed, 12 Jan 2022 18:12:20 +0000 (12 10:12 -0800)
treeb8c55f893fb22bbf919e8c2388039c0de9c75341
parent245b948815048821e73edc1a2b4224eaa94a8fc0
cat-file: don't whitespace-pad "(...)" in SYNOPSIS and usage output

Fix up whitespace issues around "(... | ...)" in the SYNOPSIS and
usage. These were introduced in ab/cat-file series. See
e145efa6059 (Merge branch 'ab/cat-file' into next, 2022-01-05). In
particular 57d6a1cf965a40417876 and 97fe7250753 in that series.

We'll now correctly emit this usage output:

    $ git cat-file -h
    usage: git cat-file <type> <object>
       or: git cat-file (-e | -p) <object>
       or: git cat-file (-t | -s) [--allow-unknown-type] <object>
    [...]

Before this the last line of that would be inconsistent with the
preceding "(-e | -p)":

   or: git cat-file ( -t | -s ) [--allow-unknown-type] <object>

Reported-by: Jiang Xin <worldhello.net@gmail.com>
Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Acked-by: Taylor Blau <me@ttaylorr.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/git-cat-file.txt
builtin/cat-file.c