summaryrefslogtreecommitdiff
path: root/redis/client.py
diff options
context:
space:
mode:
Diffstat (limited to 'redis/client.py')
-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)