From: Alex Henrie Date: Thu, 8 Sep 2016 04:34:00 +0000 (-0600) Subject: cat-file: put spaces around pipes in usage string X-Git-Tag: v2.10.1~30^2~3 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=88c782942cdd756cf0a0a720dd6f91e785ff57f2;p=git-core%2Fgit.git cat-file: put spaces around pipes in usage string This makes the style a little more consistent with other usage strings, and will resolve a warning at https://www.softcatala.org/recursos/quality/git.html Signed-off-by: Alex Henrie Signed-off-by: Junio C Hamano --- diff --git a/builtin/cat-file.c b/builtin/cat-file.c index 2dfe6265f..560f6c2cc 100644 --- a/builtin/cat-file.c +++ b/builtin/cat-file.c @@ -440,7 +440,7 @@ static int batch_objects(struct batch_options *opt) } static const char * const cat_file_usage[] = { - N_("git cat-file (-t [--allow-unknown-type]|-s [--allow-unknown-type]|-e|-p||--textconv) "), + N_("git cat-file (-t [--allow-unknown-type] | -s [--allow-unknown-type] | -e | -p | | --textconv) "), N_("git cat-file (--batch | --batch-check) [--follow-symlinks]"), NULL };