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:
-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"
);
~~~