From f77bbfca56e45b4cb405ecb5f2c950c294375b59 Mon Sep 17 00:00:00 2001 From: Travis Cline Date: Thu, 31 Oct 2013 00:07:58 -0500 Subject: [PATCH] Fix typo --- docs/sources/examples/linking_into_redis.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/sources/examples/linking_into_redis.rst b/docs/sources/examples/linking_into_redis.rst index ccbdf57c07..18d24208b9 100644 --- a/docs/sources/examples/linking_into_redis.rst +++ b/docs/sources/examples/linking_into_redis.rst @@ -62,7 +62,7 @@ Run the redis container docker run -d -e PASSWORD=docker -name redis redis-2.6 --requirepass docker -This will run our redis container wit the password docker +This will run our redis container with the password docker to secure our service. By specifying the ``-name`` flag on run we will assign the name ``redis`` to this container. If we do not specify a name for our container via the ``-name`` flag docker will automatically generate a name for us.