diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/changelog.rst | 4 | ||||
-rw-r--r-- | docs/usage.rst | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/docs/changelog.rst b/docs/changelog.rst index c56a432..ab2a092 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -148,7 +148,7 @@ Producers --------- * KAFKA-3388: Fix expiration of batches sitting in the accumulator (dpkp PR 699) * KAFKA-3197: when max.in.flight.request.per.connection = 1, attempt to guarantee ordering (dpkp PR 698) -* Dont use soon-to-be-reserved keyword await as function name (FutureProduceResult) (dpkp PR 697) +* Don't use soon-to-be-reserved keyword await as function name (FutureProduceResult) (dpkp PR 697) Clients ------- @@ -292,7 +292,7 @@ Documentation Internals --------- -* Dont override system rcvbuf or sndbuf unless configured explicitly (dpkp PR 557) +* Don't override system rcvbuf or sndbuf unless configured explicitly (dpkp PR 557) * Some attributes may not exist in __del__ if we failed assertions * Break up some circular references and close client wake pipes on __del__ (aisch PR 554) diff --git a/docs/usage.rst b/docs/usage.rst index 0ee9894..22fe20d 100644 --- a/docs/usage.rst +++ b/docs/usage.rst @@ -20,7 +20,7 @@ KafkaConsumer message.offset, message.key, message.value)) - # consume earliest available messages, dont commit offsets + # consume earliest available messages, don't commit offsets KafkaConsumer(auto_offset_reset='earliest', enable_auto_commit=False) # consume json messages |