summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Widman <jeff@jeffwidman.com>2017-10-04 14:29:45 -0700
committerGitHub <noreply@github.com>2017-10-04 14:29:45 -0700
commitcec1bdc9965b3d6729d4415e31b4dac04d603873 (patch)
tree93a88088641049ffcedc1cd2ba7d25763b28d30b
parentfc9da053c8656c2d846889b1c08d54cecd3907d0 (diff)
downloadkafka-python-cec1bdc9965b3d6729d4415e31b4dac04d603873.tar.gz
Fix grammar
-rw-r--r--kafka/consumer/fetcher.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/kafka/consumer/fetcher.py b/kafka/consumer/fetcher.py
index 10ed187..b86c8ec 100644
--- a/kafka/consumer/fetcher.py
+++ b/kafka/consumer/fetcher.py
@@ -821,7 +821,7 @@ class Fetcher(six.Iterator):
# `fetch_max_bytes` option we need this shuffle
# NOTE: we do have partition_data in random order due to usage
# of unordered structures like dicts, but that does not
- # guaranty equal distribution, and starting Python3.6
+ # guarantee equal distribution, and starting in Python3.6
# dicts retain insert order.
partition_data = list(partition_data.items())
random.shuffle(partition_data)