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:
authordengliming <liming.d.pro@gmail.com>2021-04-07 06:47:29 +0300
committerGitHub <noreply@github.com>2021-04-07 06:47:29 +0300
commitd7a6eda7d039791df441b176c091ffc2a33d7720 (patch)
tree0ab9522ba7ade0eff6ee6ef3222c671d0ad463cc /README.markdown
parent8eed7c7d9c87a205c30359a6d918fc1a2170c58b (diff)
Update README.markdown
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 c30fd2d3..a3c90963 100644
--- a/README.markdown
+++ b/README.markdown
@@ -883,7 +883,7 @@ $redis->exists('key'); /* 1 */
$redis->exists('NonExistingKey'); /* 0 */
$redis->mset(['foo' => 'foo', 'bar' => 'bar', 'baz' => 'baz']);
-$redis->exists(['foo', 'bar', 'baz]); /* 3 */
+$redis->exists(['foo', 'bar', 'baz']); /* 3 */
$redis->exists('foo', 'bar', 'baz'); /* 3 */
~~~