Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpredis/phpredis.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormichael-grunder <michael.grunder@gmail.com>2019-06-02 21:39:52 +0300
committermichael-grunder <michael.grunder@gmail.com>2019-06-02 21:39:52 +0300
commit07b1e7738e462f5bf8a34061156a93c0d00400ce (patch)
tree13aeee67e6d90d372bdea7ca198f09ab8dceedce /README.markdown
parent90b780396aadf9a8f9d1043a950758f7bd15eb29 (diff)
Fix SF longitude/latitude.
Fixes #1548
Diffstat (limited to 'README.markdown')
-rw-r--r--README.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.markdown b/README.markdown
index 3dbff726..b1693b36 100644
--- a/README.markdown
+++ b/README.markdown
@@ -3037,7 +3037,7 @@ $redis->del("myplaces");
/* Since the key will be new, $result will be 2 */
$result = $redis->geoAdd(
"myplaces",
- 37.773, -122.431, "San Francisco",
+ -122.431, 37.773, "San Francisco",
-157.858, 21.315, "Honolulu"
);
~~~