Commit 2b787763 authored by Duru Can Celasun's avatar Duru Can Celasun

Fix a tiny typo

parent 33b5f637
......@@ -43,7 +43,7 @@ Great! Now that we have an instance of the Redis client, we may issue any of the
$values = $redis->lrange('names', 5, 10);
Notice the arguments to the comment are simply passed into the magic method. Of course, you are not required to use the magic methods, you may also pass commands to the server using the **run** method:
Notice the arguments to the command are simply passed into the magic method. Of course, you are not required to use the magic methods, you may also pass commands to the server using the **run** method:
$values = $redis->run('lrange', array(5, 10));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment