Skip to content

Commit 2b78776

Browse files
committed
Fix a tiny typo
1 parent 33b5f63 commit 2b78776

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

laravel/documentation/database/redis.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Great! Now that we have an instance of the Redis client, we may issue any of the
4343

4444
$values = $redis->lrange('names', 5, 10);
4545

46-
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:
46+
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:
4747

4848
$values = $redis->run('lrange', array(5, 10));
4949

0 commit comments

Comments
 (0)