From: Christian Couder Date: Tue, 6 Apr 2021 02:35:14 +0000 (+0200) Subject: test-bloom: fix missing 'bloom' from usage string X-Git-Tag: v2.32.0-rc0~87^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=dba94e3a85d0dd7e40f3e6294d62a35ad48255d3;p=thirdparty%2Fgit.git test-bloom: fix missing 'bloom' from usage string Like 'get_murmur3' and 'generate_filter', 'get_filter_for_commit' is a subcommand of `test-tool bloom` not of `test-tool` itself. Signed-off-by: Christian Couder Signed-off-by: Junio C Hamano --- diff --git a/t/helper/test-bloom.c b/t/helper/test-bloom.c index 77eb27adac..bfabf9c5f4 100644 --- a/t/helper/test-bloom.c +++ b/t/helper/test-bloom.c @@ -46,7 +46,7 @@ static void get_bloom_filter_for_commit(const struct object_id *commit_oid) static const char *bloom_usage = "\n" " test-tool bloom get_murmer3 \n" " test-tool bloom generate_filter [...]\n" -" test-tool get_filter_for_commit \n"; +" test-tool bloom get_filter_for_commit \n"; int cmd__bloom(int argc, const char **argv) {