From 2b787763aa755f2c2d84d0d3cbfb6586ce29e692 Mon Sep 17 00:00:00 2001 From: Duru Can Celasun Date: Thu, 20 Sep 2012 10:13:01 +0300 Subject: [PATCH] Fix a tiny typo --- laravel/documentation/database/redis.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/laravel/documentation/database/redis.md b/laravel/documentation/database/redis.md index 8abdd5cc..42c6d90e 100644 --- a/laravel/documentation/database/redis.md +++ b/laravel/documentation/database/redis.md @@ -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));