Browse Source

Merge pull request #1247 from dcelasun/patch-1

Fix a tiny typo
Taylor Otwell 12 years ago
parent
commit
dad0bbc688
1 changed files with 1 additions and 1 deletions
  1. 1 1
      laravel/documentation/database/redis.md

+ 1 - 1
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));