Skip to content

Commit 7652f4e

Browse files
committed
Stupid markdown
1 parent e5cf250 commit 7652f4e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ kafka.close()
7474

7575
## Send several messages to a topic
7676

77-
Same as before, just add more arguments to `send\_simple`
77+
Same as before, just add more arguments to `send_simple`
7878

7979
```python
8080
kafka = KafkaClient("localhost", 9092)
@@ -84,7 +84,7 @@ kafka.close()
8484

8585
## Recieve some messages from a topic
8686

87-
Supply `get\_message\_set` with a `FetchRequest`, get back the messages and new `FetchRequest`
87+
Supply `get_message_set` with a `FetchRequest`, get back the messages and new `FetchRequest`
8888

8989
```python
9090
kafka = KafkaClient("localhost", 9092)
@@ -98,7 +98,7 @@ paging through the queue very simple.
9898

9999
## Send multiple messages to multiple topics
100100

101-
For this we use the `send\_multi\_message\_set` method along with `ProduceRequest` objects.
101+
For this we use the `send_multi_message_set` method along with `ProduceRequest` objects.
102102

103103
```python
104104
kafka = KafkaClient("localhost", 9092)
@@ -116,7 +116,7 @@ kafka.close()
116116

117117
## Iterate through all messages from an offset
118118

119-
The `iter\_messages` method will make the underlying calls to `get\_message\_set`
119+
The `iter_messages` method will make the underlying calls to `get_message_set`
120120
to provide a generator that returns every message available.
121121

122122
```python

0 commit comments

Comments
 (0)