summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorChristian Couder <christian.couder@gmail.com>2021-04-06 02:35:14 (GMT)
committerJunio C Hamano <gitster@pobox.com>2021-04-06 05:54:34 (GMT)
commitdba94e3a85d0dd7e40f3e6294d62a35ad48255d3 (patch)
treee541ec2397d4368c5bf242a9ae205898a695f527 /t
parent1b4c57fa87e121f155863f898dc39d06cf4a1d99 (diff)
downloadgit-dba94e3a85d0dd7e40f3e6294d62a35ad48255d3.zip
git-dba94e3a85d0dd7e40f3e6294d62a35ad48255d3.tar.gz
git-dba94e3a85d0dd7e40f3e6294d62a35ad48255d3.tar.bz2
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 <chriscool@tuxfamily.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't')
-rw-r--r--t/helper/test-bloom.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/helper/test-bloom.c b/t/helper/test-bloom.c
index 77eb27a..bfabf9c 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 <string>\n"
" test-tool bloom generate_filter <string> [<string>...]\n"
-" test-tool get_filter_for_commit <commit-hex>\n";
+" test-tool bloom get_filter_for_commit <commit-hex>\n";
int cmd__bloom(int argc, const char **argv)
{