Skip to content

Commit b19fdb9

Browse files
committed
Fixes #49
1 parent b13e9e8 commit b19fdb9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/guide/usage-commands.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ $result = $redis->executeCommand('hmset', ['test_collection', 'key1', 'val1', 'k
1717
There are shortcuts available for each command supported so insted of the above it can be used as follows:
1818

1919
```php
20-
$result = $redis->hmset(['test_collection', 'key1', 'val1', 'key2', 'val2']);
20+
$result = $redis->hmset('test_collection', 'key1', 'val1', 'key2', 'val2');
2121
```
2222

23-
For a list of available commands and their parameters see [http://redis.io/commands](http://redis.io/commands).
23+
For a list of available commands and their parameters see [http://redis.io/commands](http://redis.io/commands).

0 commit comments

Comments
 (0)