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>2014-01-06 21:35:16 +0400
committermichael-grunder <michael.grunder@gmail.com>2014-01-06 21:35:16 +0400
commit92782639b0329ff91658a0602a3d816446a3663d (patch)
tree1f65277b7beb049ba49c67bb6da5e59564af2d90
parent727b824924c4f47d83aa49372cb42d512830330b (diff)
parentf92b74ba35a332f837e163ec8f9e7683266768dd (diff)
Merge branch 'hotfix/incrbyfloat_docfix'incrbyfloat_docfix
-rw-r--r--README.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.markdown b/README.markdown
index e3ab9294..fb4c122c 100644
--- a/README.markdown
+++ b/README.markdown
@@ -780,7 +780,7 @@ $redis->incrByFloat('key1', 1.5); /* key1 didn't exist, so it will now be 1.5 */
$redis->incrByFloat('key1', 1.5); /* 3 */
$redis->incrByFloat('key1', -1.5); /* 1.5 */
-$redis->incrByFloat('key1', 2.5); /* 3.5 */
+$redis->incrByFloat('key1', 2.5); /* 4 */
~~~
### decr, decrBy