From: Andrew Kreimer Date: Sun, 15 Sep 2024 23:05:22 +0000 (+0300) Subject: cbtree: fix a typo X-Git-Tag: v2.47.0-rc0~17^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0627c58e7a66e2ac1c39c82adb8896b803cb70f1;p=thirdparty%2Fgit.git cbtree: fix a typo Fix a typo in comments. Signed-off-by: Andrew Kreimer Signed-off-by: Junio C Hamano --- 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) {