From 3770e55487fa8d8ab951b063f23eb01409b3aee7 Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Sat, 7 Sep 2024 02:09:42 +0900 Subject: [PATCH] chore: update rdkafka_partition.c continous -> continuous --- src/rdkafka_partition.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/rdkafka_partition.c b/src/rdkafka_partition.c index 451d06eb08..ab7cee5d12 100644 --- a/src/rdkafka_partition.c +++ b/src/rdkafka_partition.c @@ -814,8 +814,8 @@ void rd_kafka_msgq_insert_msgq(rd_kafka_msgq_t *destq, /* Optimize insertion by bulk-moving messages in place. * We know that: - * - destq is sorted but might not be continous (1,2,3,7) - * - srcq is sorted but might not be continous (4,5,6,8) + * - destq is sorted but might not be continuous (1,2,3,7) + * - srcq is sorted but might not be continuous (4,5,6,8) * - there migt be (multiple) overlaps between the two, e.g: * destq = (1,2,3,7), srcq = (4,5,6,8) * - there may be millions of messages.