summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 5169eb8..9f02412 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-# Kakfa Python client
+# Kafka Python client
This module provides low-level protocol support Apache Kafka. It implements the five basic request types
(and their responses): Produce, Fetch, MultiFetch, MultiProduce, and Offsets. Gzip and Snappy compression
@@ -136,7 +136,7 @@ req2 = ProduceRequest("my-topic-2", 0, [
create_message_from_string("nachricht ein"),
create_message_from_string("nachricht zwei")
])
-kafka.sent_multi_message_set([req1, req1])
+kafka.send_multi_message_set([req1, req1])
kafka.close()
```