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:
authorBryan Nelson <bryan.nelson@gmail.com>2015-07-13 20:01:36 +0300
committerBryan Nelson <bryan.nelson@gmail.com>2015-07-13 20:01:36 +0300
commit33196716ed667da877fdacc89dbea85d2ba26802 (patch)
tree0912730701221b4cf30b546abeeb78a8aa39927e /README.markdown
parent3068e3a68b369332195221bc62cacffda945cbf8 (diff)
Update README.markdown
in mget description, corrected value shown in example.
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 417ce46d..9e59f934 100644
--- a/README.markdown
+++ b/README.markdown
@@ -859,7 +859,7 @@ $redis->set('key1', 'value1');
$redis->set('key2', 'value2');
$redis->set('key3', 'value3');
$redis->mGet(array('key1', 'key2', 'key3')); /* array('value1', 'value2', 'value3');
-$redis->mGet(array('key0', 'key1', 'key5')); /* array(`FALSE`, 'value2', `FALSE`);
+$redis->mGet(array('key0', 'key1', 'key5')); /* array(`FALSE`, 'value1', `FALSE`);
~~~
### getSet