diff --git a/docs/guide-ja/usage-commands.md b/docs/guide-ja/usage-commands.md index 3fa8b40e4..9fd3bedd2 100644 --- a/docs/guide-ja/usage-commands.md +++ b/docs/guide-ja/usage-commands.md @@ -18,7 +18,7 @@ $result = $redis->executeCommand('hmset', ['test_collection', 'key1', 'val1', 'k サポートされているコマンドのそれぞれに対してショートカットが利用できますので、上記の代りに次のようにすることも出来ます。 ```php -$result = $redis->hmset(['test_collection', 'key1', 'val1', 'key2', 'val2']); +$result = $redis->hmset('test_collection', 'key1', 'val1', 'key2', 'val2'); ``` 利用できるコマンドとそのパラメータについては、[http://redis.io/commands](http://redis.io/commands) のリストを参照してください。