am: put spaces around pipe 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:33 UTC
d65fdc9c5dbb44b60f841352699acbe54de37b95
1 file changed
+1
-1
builtin/am.c
+1
-1
@@ -2222,7 +2222,7 @@ int cmd_am(int argc, const char **argv, const char *prefix)
2222
int in_progress;
2223
2224
const char * const usage[] = {
2225
- N_("git am [<options>] [(<mbox>|<Maildir>)...]"),
2225
+ N_("git am [<options>] [(<mbox> | <Maildir>)...]"),
2226
N_("git am [<options>] (--continue | --skip | --abort)"),
2227
NULL
2228
};