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:
authorAlexander Schranz <alexander@sulu.io>2018-11-19 19:06:46 +0300
committerGitHub <noreply@github.com>2018-11-19 19:06:46 +0300
commit808a63d5ed2af1f3898e7e4b9ad38d2313f16f97 (patch)
tree13e7bf1d89511eacab2990a081af2ddea7ee8c38 /README.markdown
parente9e81a92e28a8547e8a6b6f00fe1b621e79e11be (diff)
fixed invalid stream id error 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 8f4e564d..b6a18b78 100644
--- a/README.markdown
+++ b/README.markdown
@@ -3330,7 +3330,7 @@ _**Description**_: Add a message to a stream
##### *Example*
~~~php
-$obj_redis->xAdd('mystream', "\*", ['field' => 'value']);
+$obj_redis->xAdd('mystream', "*", ['field' => 'value']);
~~~
### xClaim