diff options
author | Junio C Hamano <gitster@pobox.com> | 2022-03-06 21:25:32 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2022-03-06 21:25:32 -0800 |
commit | 6d8d81ec36081328638a886664e8d54434ca729a (patch) | |
tree | bb6f426088d2e5801d4ea993b72fb95d4e9257dc /t/helper/test-run-command.c | |
parent | Merge branch 'ab/test-leak-diag' (diff) | |
parent | amend remaining usage strings according to style guide (diff) | |
download | tgif-6d8d81ec36081328638a886664e8d54434ca729a.tar.xz |
Merge branch 'ac/usage-string-fixups'
Usage-string normalization.
* ac/usage-string-fixups:
amend remaining usage strings according to style guide
Diffstat (limited to 't/helper/test-run-command.c')
-rw-r--r-- | t/helper/test-run-command.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/t/helper/test-run-command.c b/t/helper/test-run-command.c index 913775a14b..8f370cd89f 100644 --- a/t/helper/test-run-command.c +++ b/t/helper/test-run-command.c @@ -221,9 +221,9 @@ static int quote_stress_test(int argc, const char **argv) struct strbuf out = STRBUF_INIT; struct strvec args = STRVEC_INIT; struct option options[] = { - OPT_INTEGER('n', "trials", &trials, "Number of trials"), - OPT_INTEGER('s', "skip", &skip, "Skip <n> trials"), - OPT_BOOL('m', "msys2", &msys2, "Test quoting for MSYS2's sh"), + OPT_INTEGER('n', "trials", &trials, "number of trials"), + OPT_INTEGER('s', "skip", &skip, "skip <n> trials"), + OPT_BOOL('m', "msys2", &msys2, "test quoting for MSYS2's sh"), OPT_END() }; const char * const usage[] = { |