summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicholas Charriere <nicholascharriere@gmail.com>2017-09-02 09:36:37 -0700
committerGitHub <noreply@github.com>2017-09-02 09:36:37 -0700
commitfe241ceafc317f40b7a03d514279397c3c7e731f (patch)
tree1afc6a9a7d30b556b1f75e913dc4501cb83113e5
parenta0f90307332c3dccdef241782925fd95f52b7601 (diff)
parent779f3c339fb3942d781e35e1cccaa552cbe44016 (diff)
downloadpymemcache-fe241ceafc317f40b7a03d514279397c3c7e731f.tar.gz
Merge pull request #163 from EdwardBetts/spelling
correct spelling mistake
-rw-r--r--pymemcache/serde.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pymemcache/serde.py b/pymemcache/serde.py
index 98bde52..23cbd7b 100644
--- a/pymemcache/serde.py
+++ b/pymemcache/serde.py
@@ -27,7 +27,7 @@ FLAG_BYTES = 0
FLAG_PICKLE = 1 << 0
FLAG_INTEGER = 1 << 1
FLAG_LONG = 1 << 2
-FLAG_COMPRESSED = 1 << 3 # unused, to main compatability with python-memcached
+FLAG_COMPRESSED = 1 << 3 # unused, to main compatibility with python-memcached
FLAG_TEXT = 1 << 4
# Pickle protocol version (-1 for highest available to runtime)