summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy McCurdy <andy@andymccurdy.com>2013-11-26 18:07:08 -0800
committerAndy McCurdy <andy@andymccurdy.com>2013-11-26 18:07:08 -0800
commit2062743be16d601b1ab73eb20ab410e01308fda8 (patch)
tree43e2a5bf615383bbc8fb3aacd7eb6d31e8060610
parent976e72be529fdf741b75a71746f34c6530fc8ae9 (diff)
parent507bc17a29f1d502c093a1ddea96d53246677b28 (diff)
downloadredis-py-2062743be16d601b1ab73eb20ab410e01308fda8.tar.gz
Merge pull request #401 from limsangjin12/master
Fix a typo on sunion
-rw-r--r--redis/client.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/redis/client.py b/redis/client.py
index 70c2acf..675c784 100644
--- a/redis/client.py
+++ b/redis/client.py
@@ -1217,7 +1217,7 @@ class StrictRedis(object):
return self.execute_command('SREM', name, *values)
def sunion(self, keys, *args):
- "Return the union of sets specifiued by ``keys``"
+ "Return the union of sets specified by ``keys``"
args = list_or_args(keys, args)
return self.execute_command('SUNION', *args)