From 14423bba40628c5aa889360020078231ff3870a4 Mon Sep 17 00:00:00 2001 From: LesnyRumcajs Date: Tue, 12 May 2020 10:49:08 +0200 Subject: [PATCH] fixed typo log message --- examples/consumer_dispatcher_example.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/consumer_dispatcher_example.cpp b/examples/consumer_dispatcher_example.cpp index 36da319..dff06a3 100644 --- a/examples/consumer_dispatcher_example.cpp +++ b/examples/consumer_dispatcher_example.cpp @@ -115,7 +115,7 @@ int main(int argc, char* argv[]) { }, // Whenever EOF is reached on a partition, print this [](ConsumerDispatcher::EndOfFile, const TopicPartition& topic_partition) { - cout << "Reched EOF on partition " << topic_partition << endl; + cout << "Reached EOF on partition " << topic_partition << endl; } ); }