summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Reifschneider <jafo@tummy.com>2014-05-10 14:50:23 -0600
committerSean Reifschneider <jafo@tummy.com>2014-05-10 14:50:23 -0600
commit6a17f67a3bc388c8817e463cdc359feb730c6f8f (patch)
tree429b3fe2b30826632d458d6da146375e3bd7106f
parentfbc7f56e93e1523e1c09dc3da0c9faf545c4b34c (diff)
downloadpython-memcached-6a17f67a3bc388c8817e463cdc359feb730c6f8f.tar.gz
Doc fix from Dustin Oprea (part of #38).
-rw-r--r--memcache.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/memcache.py b/memcache.py
index 7e33c84..247a2ba 100644
--- a/memcache.py
+++ b/memcache.py
@@ -26,7 +26,7 @@ This should give you a feel for how this module operates::
mc.incr("key")
mc.decr("key")
-The standard way to use memcache with a database is like this::
+The standard way to use memcache with a database is like this:
key = derive_key(obj)
obj = mc.get(key)