Merge pull request #246 from LesnyRumcajs/patch-2

fixed typo in example (log message)
This commit is contained in:
Matias Fontanini
2020-05-23 09:34:41 -07:00
committed by GitHub

View File

@@ -115,7 +115,7 @@ int main(int argc, char* argv[]) {
}, },
// Whenever EOF is reached on a partition, print this // Whenever EOF is reached on a partition, print this
[](ConsumerDispatcher::EndOfFile, const TopicPartition& topic_partition) { [](ConsumerDispatcher::EndOfFile, const TopicPartition& topic_partition) {
cout << "Reched EOF on partition " << topic_partition << endl; cout << "Reached EOF on partition " << topic_partition << endl;
} }
); );
} }