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>2021-08-26 06:54:38 +0300
committerGitHub <noreply@github.com>2021-08-26 06:54:38 +0300
commitfac5f43ecc27f5cb6f4c3b971569c30172f1b084 (patch)
treed722a22b50d5873f0d4a30154929bceb103344b4
parent918604fa8c5cb50af158f7cc9bc2724390157710 (diff)
parentb3e5a7e27b652e0672ed03139ff7538be7699af4 (diff)
Merge pull request #1926 from poplary/poplary-patch-fix-README
Fixed README, add the missing single quote mark.
-rw-r--r--README.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.markdown b/README.markdown
index cf8a5e97..ac12b5ea 100644
--- a/README.markdown
+++ b/README.markdown
@@ -295,7 +295,7 @@ $redis->auth(['phpredis', 'haxx00r']);
$redis->auth(['foobared']);
/* You can also use an associative array specifying user and pass */
-$redis->auth(['user' => 'phpredis', 'pass' => 'phpredis]);
+$redis->auth(['user' => 'phpredis', 'pass' => 'phpredis']);
$redis->auth(['pass' => 'phpredis']);
~~~