Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit aee29bf

Browse files
wangqrmichael-grunder
authored andcommitted
Fix unbalanced parenthesis in README.markdown
1 parent 09a095e commit aee29bf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.markdown

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2653,7 +2653,7 @@ $redis->sAdd('s2', '4');
26532653
var_dump($redis->sUnion('s0', 's1', 's2'));
26542654

26552655
/* Pass a single array */
2656-
var_dump($redis->sUnion(['s0', 's1', 's2']);
2656+
var_dump($redis->sUnion(['s0', 's1', 's2']));
26572657

26582658
~~~
26592659
Return value: all elements that are either in s0 or in s1 or in s2.
@@ -3832,7 +3832,7 @@ $obj_redis->xRange('mystream', '-', '+', 2);
38323832

38333833
##### *Prototype*
38343834
~~~php
3835-
$obj_redis->xRead($arr_streams [, $i_count, $i_block);
3835+
$obj_redis->xRead($arr_streams [, $i_count, $i_block]);
38363836
~~~
38373837

38383838
_**Description**_: Read data from one or more streams and only return IDs greater than sent in the command.
@@ -4048,7 +4048,7 @@ $redis->rawCommand("set", "foo", "bar");
40484048
$redis->rawCommand("get", "foo");
40494049

40504050
/* Returns: 3 */
4051-
$redis->rawCommand("rpush", "mylist", "one", 2, 3.5));
4051+
$redis->rawCommand("rpush", "mylist", "one", 2, 3.5);
40524052

40534053
/* Returns: ["one", "2", "3.5000000000000000"] */
40544054
$redis->rawCommand("lrange", "mylist", 0, -1);

0 commit comments

Comments
 (0)