summaryrefslogtreecommitdiff
path: root/redis/cluster.py
diff options
context:
space:
mode:
authorTim Gates <tim.gates@iress.com>2022-07-24 22:34:26 +1000
committerGitHub <noreply@github.com>2022-07-24 15:34:26 +0300
commita304953ed57c81a008a0217df375239a85ad7a04 (patch)
treeeab7d88a9e5710702e242e60f44fc36355b8152e /redis/cluster.py
parent1d82cb2f6a4bcda86ff78dd76d62580c5a40ca08 (diff)
downloadredis-py-a304953ed57c81a008a0217df375239a85ad7a04.tar.gz
docs: Fix a few typos (#2274)
* docs: Fix a few typos There are small typos in: - redis/cluster.py - redis/commands/core.py - redis/ocsp.py - tests/test_cluster.py Fixes: - Should read `validity` rather than `valididy`. - Should read `reinitialize` rather than `reinitilize`. - Should read `farthest` rather than `farest`. - Should read `commands` rather than `comamnds`. * Update core.py
Diffstat (limited to 'redis/cluster.py')
-rw-r--r--redis/cluster.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/redis/cluster.py b/redis/cluster.py
index 6034e96..9e773b2 100644
--- a/redis/cluster.py
+++ b/redis/cluster.py
@@ -2025,7 +2025,7 @@ class ClusterPipeline(RedisCluster):
)
if attempt and allow_redirections:
# RETRY MAGIC HAPPENS HERE!
- # send these remaing comamnds one at a time using `execute_command`
+ # send these remaing commands one at a time using `execute_command`
# in the main client. This keeps our retry logic
# in one place mostly,
# and allows us to be more confident in correctness of behavior.