summaryrefslogtreecommitdiff
path: root/t/helper
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2021-04-13 22:28:52 (GMT)
committerJunio C Hamano <gitster@pobox.com>2021-04-13 22:28:52 (GMT)
commit8446b388b17466a4bc5f4da09f4914e1059d064c (patch)
tree4502d2d9a561b21054f6ec33d4a55d8323196d85 /t/helper
parent2279289e95dc119e79dd0d70c1783c40858e323c (diff)
parentdba94e3a85d0dd7e40f3e6294d62a35ad48255d3 (diff)
downloadgit-8446b388b17466a4bc5f4da09f4914e1059d064c.zip
git-8446b388b17466a4bc5f4da09f4914e1059d064c.tar.gz
git-8446b388b17466a4bc5f4da09f4914e1059d064c.tar.bz2
Merge branch 'cc/test-helper-bloom-usage-fix'
Usage message fix for a test helper. * cc/test-helper-bloom-usage-fix: test-bloom: fix missing 'bloom' from usage string
Diffstat (limited to 't/helper')
-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 2a1ae3d..ad3ef1c 100644
--- a/t/helper/test-bloom.c
+++ b/t/helper/test-bloom.c
@@ -48,7 +48,7 @@ static void get_bloom_filter_for_commit(const struct object_id *commit_oid)
static const char *bloom_usage = "\n"
" test-tool bloom get_murmur3 <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)
{