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 <alexhenrie24@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Alex Henrie committed
Sep 7, 2016 at 22:34 UTC
88c782942cdd756cf0a0a720dd6f91e785ff57f2
1 file changed
+1
-1
builtin/cat-file.c
+1
-1
@@ -440,7 +440,7 @@ static int batch_objects(struct batch_options *opt)
440
}
441
442
static const char * const cat_file_usage[] = {
443
- N_("git cat-file (-t [--allow-unknown-type]|-s [--allow-unknown-type]|-e|-p|<type>|--textconv) <object>"),
443
+ N_("git cat-file (-t [--allow-unknown-type] | -s [--allow-unknown-type] | -e | -p | <type> | --textconv) <object>"),
444
N_("git cat-file (--batch | --batch-check) [--follow-symlinks]"),
445
NULL
446
};