summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorZak Johnson <zakj@nox.cx>2011-11-07 16:10:22 -0800
committerZak Johnson <zakj@nox.cx>2011-11-07 16:10:22 -0800
commitdc79eb82aa3e877a31487fb622fb09ab830bbf35 (patch)
tree6ebc879dc7a05053fa097a1ae85f5b9437fefbc4 /README.md
parent415125e57a6fb164153b3dd9558dbadf23a5dbb6 (diff)
downloadredis-py-dc79eb82aa3e877a31487fb622fb09ab830bbf35.tar.gz
Correct typos in README.md
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 8dbd782..830eb2c 100644
--- a/README.md
+++ b/README.md
@@ -205,7 +205,7 @@ value from GET.
Enter the WATCH command. WATCH provides the ability to monitor one or more keys
prior to starting a transaction. If any of those keys change prior the
-execution of that transaction, the entre transaction will be canceled and a
+execution of that transaction, the entire transaction will be canceled and a
WatchError will be raised. To implement our own client-side INCR command, we
could do something like this:
@@ -234,10 +234,10 @@ could do something like this:
... continue
Note that, because the Pipeline must bind to a single connection for the
-duration of a WATCH, care must be taken to ensure that he connection is
+duration of a WATCH, care must be taken to ensure that the connection is
returned to the connection pool by calling the reset() method. If the
Pipeline is used as a context manager (as in the example above) reset()
-will be called automatically. Of course you can do this the manual way as by
+will be called automatically. Of course you can do this the manual way by
explicity calling reset():
>>> pipe = r.pipeline()