summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy McCurdy <andy@andymccurdy.com>2018-11-01 09:53:29 -0700
committerGitHub <noreply@github.com>2018-11-01 09:53:29 -0700
commit724af050bc5a8a0c1d0975efd936c5fedb7b5d88 (patch)
tree1b81899d949530e492a57f89417441ee91130388
parente1b13b3b5366a422b182bbb7ff2b30d479740a96 (diff)
parent00aa265b5b30c6d9181306c8de2bd21611815f58 (diff)
downloadredis-py-724af050bc5a8a0c1d0975efd936c5fedb7b5d88.tar.gz
Merge pull request #1044 from faheel/fix-docs-formatting
Improve formatting of docs
-rwxr-xr-xredis/client.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/redis/client.py b/redis/client.py
index 15be7b8..a4d1cab 100755
--- a/redis/client.py
+++ b/redis/client.py
@@ -2526,14 +2526,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)