summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFaheel Ahmad <faheel@live.in>2018-11-01 12:28:57 +0530
committerFaheel Ahmad <faheel@live.in>2018-11-01 12:28:57 +0530
commit00aa265b5b30c6d9181306c8de2bd21611815f58 (patch)
tree18c4cd704ad7d0eafd1e717437e75d3353e9f382
parent84efaa73e71d83c8e2ff86c9e0d7fade851cf1e8 (diff)
downloadredis-py-00aa265b5b30c6d9181306c8de2bd21611815f58.tar.gz
Add missing space
-rwxr-xr-xredis/client.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/redis/client.py b/redis/client.py
index 45f1ff0..df67955 100755
--- a/redis/client.py
+++ b/redis/client.py
@@ -2525,14 +2525,14 @@ class StrictRedis(object):
def geohash(self, name, *values):
"""
Return the geo hash string for each item of ``values`` members of
- the specified key identified by the ``name``argument.
+ the specified key identified by the ``name`` argument.
"""
return self.execute_command('GEOHASH', name, *values)
def geopos(self, name, *values):
"""
Return the positions of each item of ``values`` as members of
- the specified key identified by the ``name``argument. Each position
+ the specified key identified by the ``name`` argument. Each position
is represented by the pairs lon and lat.
"""
return self.execute_command('GEOPOS', name, *values)