Skip to content

Commit c68ee9b

Browse files
committed
Merge branch 'master' of github.com:git/git
* 'master' of github.com:git/git: diff: mark param1 and param2 as placeholders
2 parents f98643f + 3e0d3cd commit c68ee9b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

diff.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5590,16 +5590,16 @@ struct option *add_diff_options(const struct option *opts,
55905590
OPT_BITOP(0, "shortstat", &options->output_format,
55915591
N_("output only the last line of --stat"),
55925592
DIFF_FORMAT_SHORTSTAT, DIFF_FORMAT_NO_OUTPUT),
5593-
OPT_CALLBACK_F('X', "dirstat", options, N_("<param1,param2>..."),
5593+
OPT_CALLBACK_F('X', "dirstat", options, N_("<param1>,<param2>..."),
55945594
N_("output the distribution of relative amount of changes for each sub-directory"),
55955595
PARSE_OPT_NONEG | PARSE_OPT_OPTARG,
55965596
diff_opt_dirstat),
55975597
OPT_CALLBACK_F(0, "cumulative", options, NULL,
55985598
N_("synonym for --dirstat=cumulative"),
55995599
PARSE_OPT_NONEG | PARSE_OPT_NOARG,
56005600
diff_opt_dirstat),
5601-
OPT_CALLBACK_F(0, "dirstat-by-file", options, N_("<param1,param2>..."),
5602-
N_("synonym for --dirstat=files,param1,param2..."),
5601+
OPT_CALLBACK_F(0, "dirstat-by-file", options, N_("<param1>,<param2>..."),
5602+
N_("synonym for --dirstat=files,<param1>,<param2>..."),
56035603
PARSE_OPT_NONEG | PARSE_OPT_OPTARG,
56045604
diff_opt_dirstat),
56055605
OPT_BIT_F(0, "check", &options->output_format,

0 commit comments

Comments
 (0)