Skip to content

Commit 30cf5c4

Browse files
committed
Merge pull request redis#213 from zakj/patch-1
Correct typos in README.md
2 parents 415125e + dc79eb8 commit 30cf5c4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ value from GET.
205205

206206
Enter the WATCH command. WATCH provides the ability to monitor one or more keys
207207
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
209209
WatchError will be raised. To implement our own client-side INCR command, we
210210
could do something like this:
211211

@@ -234,10 +234,10 @@ could do something like this:
234234
... continue
235235

236236
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
238238
returned to the connection pool by calling the reset() method. If the
239239
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
241241
explicity calling reset():
242242

243243
>>> pipe = r.pipeline()

0 commit comments

Comments
 (0)