summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Arthur <mumrah@gmail.com>2013-01-26 14:26:19 -0500
committerDavid Arthur <mumrah@gmail.com>2013-01-26 14:26:19 -0500
commit40e49dce482b02857ed22db9f830772ed38dded7 (patch)
tree6fa67e3129a6d291a1f022596a0348f22b34ee49
parent81ff0f5991dca7bf604b7f6f281681a5b4421649 (diff)
downloadkafka-python-40e49dce482b02857ed22db9f830772ed38dded7.tar.gz
Fix some typos, closes #12
-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()
```