summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy McCurdy <andy@andymccurdy.com>2017-04-29 18:10:35 -0400
committerGitHub <noreply@github.com>2017-04-29 18:10:35 -0400
commit3db001461ce3ed749eb863bd3dee37938bc09fe7 (patch)
tree37994478ac042092800ac9e7f7b40d7af7307cdc
parent302731f2aeec55b274f19a43908f059f261418de (diff)
parent92b977f5914885c30a8b197711e95b9529da7ab7 (diff)
downloadredis-py-3db001461ce3ed749eb863bd3dee37938bc09fe7.tar.gz
Merge pull request #855 from categulario/categulario/fix-help-text
change order of lon-lat in geoadd help text
-rwxr-xr-xredis/client.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/redis/client.py b/redis/client.py
index b5fda9c..d7608aa 100755
--- a/redis/client.py
+++ b/redis/client.py
@@ -2097,7 +2097,7 @@ class StrictRedis(object):
Add the specified geospatial items to the specified key identified
by the ``name`` argument. The Geospatial items are given as ordered
members of the ``values`` argument, each item or place is formed by
- the triad latitude, longitude and name.
+ the triad longitude, latitude and name.
"""
if len(values) % 3 != 0:
raise RedisError("GEOADD requires places with lat, lon and name"