Skip to content

Commit 14f905c

Browse files
committed
Merge branch 'rt/placeholder-in-usage' into maint
A couple of commands still showed "[options]" in their usage string to note where options should come on their command line, but we spell that "[<options>]" in most places these days. * rt/placeholder-in-usage: am, credential-cache: add angle brackets to usage string
2 parents ccb4739 + d96a031 commit 14f905c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

builtin/am.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2229,8 +2229,8 @@ int cmd_am(int argc, const char **argv, const char *prefix)
22292229
int in_progress;
22302230

22312231
const char * const usage[] = {
2232-
N_("git am [options] [(<mbox>|<Maildir>)...]"),
2233-
N_("git am [options] (--continue | --skip | --abort)"),
2232+
N_("git am [<options>] [(<mbox>|<Maildir>)...]"),
2233+
N_("git am [<options>] (--continue | --skip | --abort)"),
22342234
NULL
22352235
};
22362236

credential-cache.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ int main(int argc, const char **argv)
8888
int timeout = 900;
8989
const char *op;
9090
const char * const usage[] = {
91-
"git credential-cache [options] <action>",
91+
"git credential-cache [<options>] <action>",
9292
NULL
9393
};
9494
struct option options[] = {

0 commit comments

Comments
 (0)