File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -205,7 +205,7 @@ value from GET.
205
205
206
206
Enter the WATCH command. WATCH provides the ability to monitor one or more keys
207
207
prior to starting a transaction. If any of those keys change prior the
208
- execution of that transaction, the entre transaction will be canceled and a
208
+ execution of that transaction, the entire transaction will be canceled and a
209
209
WatchError will be raised. To implement our own client-side INCR command, we
210
210
could do something like this:
211
211
@@ -234,10 +234,10 @@ could do something like this:
234
234
... continue
235
235
236
236
Note that, because the Pipeline must bind to a single connection for the
237
- duration of a WATCH, care must be taken to ensure that he connection is
237
+ duration of a WATCH, care must be taken to ensure that the connection is
238
238
returned to the connection pool by calling the reset() method. If the
239
239
Pipeline is used as a context manager (as in the example above) reset()
240
- will be called automatically. Of course you can do this the manual way as by
240
+ will be called automatically. Of course you can do this the manual way by
241
241
explicity calling reset():
242
242
243
243
>>> pipe = r.pipeline()
You can’t perform that action at this time.
0 commit comments