From 4f2bd1862a57f352fcf22b75f4310b0360d0cd37 Mon Sep 17 00:00:00 2001 From: Rich Bowen Date: Fri, 27 Jan 2023 11:34:32 -0500 Subject: [PATCH 1/2] trivial typo fix --- docs/examples/pipeline_examples.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/examples/pipeline_examples.ipynb b/docs/examples/pipeline_examples.ipynb index 490d2213a0..4e20375bfa 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." ] }, { From 6da77071a5ea0774d35bca837dbc3554d1757641 Mon Sep 17 00:00:00 2001 From: Rich Bowen Date: Fri, 27 Jan 2023 11:35:49 -0500 Subject: [PATCH 2/2] trivial typo fix --- docs/advanced_features.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/advanced_features.rst b/docs/advanced_features.rst index 4ad922fe72..5fd20c2ba2 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