aboutsummaryrefslogtreecommitdiffstats
path: root/cbtree.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2024-09-23 10:35:07 -0700
committerJunio C Hamano <gitster@pobox.com>2024-09-23 10:35:07 -0700
commitfed9298d6d1af4f94a26dc2bdcf965cd98c28572 (patch)
tree53fb6efb7664ef51193aca337e6d62fa597d3d41 /cbtree.c
parentMerge branch 'jk/diag-unexpected-remote-helper-death' (diff)
parentcbtree: fix a typo (diff)
downloadgit-fed9298d6d1af4f94a26dc2bdcf965cd98c28572.tar.gz
git-fed9298d6d1af4f94a26dc2bdcf965cd98c28572.zip
Merge branch 'ak/typofixes'
Trivial typofixes. * ak/typofixes: cbtree: fix a typo bloom: fix a typo attr: fix a typo
Diffstat (limited to 'cbtree.c')
-rw-r--r--cbtree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cbtree.c b/cbtree.c
index c1cc30a5dc..cf8cf75b89 100644
--- a/cbtree.c
+++ b/cbtree.c
@@ -12,7 +12,7 @@ static struct cb_node *cb_node_of(const void *p)
return (struct cb_node *)((uintptr_t)p - 1);
}
-/* locate the best match, does not do a final comparision */
+/* locate the best match, does not do a final comparison */
static struct cb_node *cb_internal_best_match(struct cb_node *p,
const uint8_t *k, size_t klen)
{