summaryrefslogtreecommitdiff
path: root/redis
diff options
context:
space:
mode:
authorGreg Ward <gward@dyn.com>2015-12-09 16:32:57 -0500
committerGreg Ward <gward@dyn.com>2015-12-09 16:33:00 -0500
commit43c0a1574df2811719e18a020d23dc941c866d34 (patch)
tree1572863219a3bceb68cabd9e97bf00a07d4947e8 /redis
parentda1378481f963961afab420573eb4130091dd861 (diff)
downloadredis-py-43c0a1574df2811719e18a020d23dc941c866d34.tar.gz
Fix typo in comment.
Diffstat (limited to 'redis')
-rwxr-xr-xredis/client.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/redis/client.py b/redis/client.py
index e426abe..c7a03b9 100755
--- a/redis/client.py
+++ b/redis/client.py
@@ -2145,8 +2145,8 @@ class PubSub(object):
def execute_command(self, *args, **kwargs):
"Execute a publish/subscribe command"
- # NOTE: don't parse the response in this function. it could pull a
- # legitmate message off the stack if the connection is already
+ # NOTE: don't parse the response in this function -- it could pull a
+ # legitimate message off the stack if the connection is already
# subscribed to one or more channels
if self.connection is None: