summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJani Korhonen <zachu@thegroup.fi>2019-07-18 20:56:04 +0300
committerAndy McCurdy <andy@andymccurdy.com>2019-07-18 10:56:04 -0700
commit6e23760fefbdf27ec941a2c3ae1ec2657875ac31 (patch)
treec34d04a3d4d8edc5b2615fb667ff49045e2750cf
parent088c0ab359e6f52954c955a08356e32bb7687ae9 (diff)
downloadredis-py-6e23760fefbdf27ec941a2c3ae1ec2657875ac31.tar.gz
Fix typo in README and CHANGELOG (#1133)
-rw-r--r--CHANGES2
-rw-r--r--README.rst2
2 files changed, 2 insertions, 2 deletions
diff --git a/CHANGES b/CHANGES
index 33309eb..ca1ecab 100644
--- a/CHANGES
+++ b/CHANGES
@@ -188,7 +188,7 @@
Thanks Ben Greenberg
* SET's EX and PX arguments now allow values of zero. Thanks huangqiyin
* Added PUBSUB {CHANNELS, NUMPAT, NUMSUB} commands. Thanks Angus Pearson
- * PubSub connections that that encounter `InterruptedError`s now
+ * PubSub connections that encounter `InterruptedError`s now
retry automatically. Thanks Carlton Gibson and Seth M. Larson
* LPUSH and RPUSH commands run on PyPy now correctly returns the number
of items of the list. Thanks Jeong YunWon
diff --git a/README.rst b/README.rst
index b0fd05f..33a5769 100644
--- a/README.rst
+++ b/README.rst
@@ -722,7 +722,7 @@ function. Script instances accept the following optional arguments:
KEYS list in Lua.
* **args**: A list of argument values. This becomes the ARGV list in Lua.
* **client**: A redis-py Client or Pipeline instance that will invoke the
- script. If client isn't specified, the client that intiially
+ script. If client isn't specified, the client that initially
created the Script instance (the one that `register_script` was
invoked from) will be used.