summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRich Bowen <rbowen@rcbowen.com>2023-01-29 08:30:43 -0500
committerGitHub <noreply@github.com>2023-01-29 15:30:43 +0200
commit42604b68c906a156fd64a001a83e0e84a0fa63fa (patch)
tree700320a9a6253c411a513c538b3848218796d8ce
parente39c7babdd80ecdd930bed9d201e8fb9187309ac (diff)
downloadredis-py-42604b68c906a156fd64a001a83e0e84a0fa63fa.tar.gz
trivial typo fix (#2566)
* trivial typo fix * trivial typo fix
-rw-r--r--docs/advanced_features.rst2
-rw-r--r--docs/examples/pipeline_examples.ipynb2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/advanced_features.rst b/docs/advanced_features.rst
index 4ad922f..5fd20c2 100644
--- a/docs/advanced_features.rst
+++ b/docs/advanced_features.rst
@@ -162,7 +162,7 @@ instance will wait for all the nodes to respond before returning the
result to the caller. Command responses are returned as a list sorted in
the same order in which they were sent. Pipelines can be used to
dramatically increase the throughput of Redis Cluster by significantly
-reducing the the number of network round trips between the client and
+reducing the number of network round trips between the client and
the server.
.. code:: pycon
diff --git a/docs/examples/pipeline_examples.ipynb b/docs/examples/pipeline_examples.ipynb
index 490d221..4e20375 100644
--- a/docs/examples/pipeline_examples.ipynb
+++ b/docs/examples/pipeline_examples.ipynb
@@ -123,7 +123,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
- "The responses of the three commands are stored in a list. In the above example, the two first boolean indicates that the the `set` commands were successfull and the last element of the list is the result of the `get(\"a\")` comand."
+ "The responses of the three commands are stored in a list. In the above example, the two first boolean indicates that the `set` commands were successfull and the last element of the list is the result of the `get(\"a\")` comand."
]
},
{