From e6b109cf8a9b74caf14bf994b6444c0ad6363b4e Mon Sep 17 00:00:00 2001 From: Dave Southey Date: Tue, 7 Jul 2015 17:45:29 +0100 Subject: [PATCH] Fix artisan link --- redis.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redis.md b/redis.md index 83124f20f5a..a98d451a7aa 100644 --- a/redis.md +++ b/redis.md @@ -101,7 +101,7 @@ Pipelining should be used when you need to send many commands to the server in o Laravel also provides a convenient interface to the Redis `publish` and `subscribe` commands. These Redis commands allow you to listen for messages on a given "channel". You may publish messages to the channel from another application, or even using another programming language, allowing easy communication between applications / processes. -First, let's setup a listener on a channel via Redis using the `subscribe` method. We will place this method call within an [Artisan command](/docs/{{version}}/commands) since calling the `subscribe` method begins a long-running process: +First, let's setup a listener on a channel via Redis using the `subscribe` method. We will place this method call within an [Artisan command](/docs/{{version}}/artisan) since calling the `subscribe` method begins a long-running process: