Browse code

Typo/grammar corrections to dockerizing.md

Added commas where necessary, edited typos to improve readability.

Signed-off-by: J. Nunn <jeffnunn@amazon.com>

J. Nunn authored on 2015/03/20 00:42:15
Showing 1 changed files
... ...
@@ -101,7 +101,7 @@ Again we can do this with the `docker run` command:
101 101
     $ sudo docker run -d ubuntu:14.04 /bin/sh -c "while true; do echo hello world; sleep 1; done"
102 102
     1e5535038e285177d5214659a068137486f96ee5c2e85a4ac52dc83f2ebe4147
103 103
 
104
-Wait what? Where's our "Hello world" Let's look at what we've run here.
104
+Wait, what? Where's our "hello world" output? Let's look at what we've run here.
105 105
 It should look pretty familiar. We ran `docker run` but this time we
106 106
 specified a flag: `-d`. The `-d` flag tells Docker to run the container
107 107
 and put it in the background, to daemonize it.
... ...
@@ -187,7 +187,7 @@ Excellent. Our container has been stopped.
187 187
 
188 188
 # Next steps
189 189
 
190
-Now we've seen how simple it is to get started with Docker let's learn how to
190
+Now we've seen how simple it is to get started with Docker. Let's learn how to
191 191
 do some more advanced tasks.
192 192
 
193 193
 Go to [Working With Containers](/userguide/usingdocker).