diff options
author | Abraham Toriz Cruz <a.wonderful.code@gmail.com> | 2017-04-29 17:02:01 -0500 |
---|---|---|
committer | Abraham Toriz Cruz <a.wonderful.code@gmail.com> | 2017-04-29 17:02:01 -0500 |
commit | 92b977f5914885c30a8b197711e95b9529da7ab7 (patch) | |
tree | 37994478ac042092800ac9e7f7b40d7af7307cdc | |
parent | 302731f2aeec55b274f19a43908f059f261418de (diff) | |
download | redis-py-92b977f5914885c30a8b197711e95b9529da7ab7.tar.gz |
change order of lon-lat in geoadd help text
-rwxr-xr-x | redis/client.py | 2 |
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" |