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:47 +0400
committermichael-grunder <michael.grunder@gmail.com>2014-01-06 21:35:47 +0400
commit589072a64983527b27bcd236357b7146ccc01015 (patch)
tree2cc94df4791391921c6e92c03bf6de39d327bb3a /README.markdown
parent3f0dcd8692eb06e681fb3b6ea877350bf78a5761 (diff)
parentf92b74ba35a332f837e163ec8f9e7683266768dd (diff)
Merge branch 'hotfix/incrbyfloat_docfix' into develop
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 aeed26a0..f0d48331 100644
--- a/README.markdown
+++ b/README.markdown
@@ -794,7 +794,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