diff --git a/guide/english/containers/run-your-first-docker-image/index.md b/guide/english/containers/run-your-first-docker-image/index.md
index 0f8fbd5fec..390d2911d4 100644
--- a/guide/english/containers/run-your-first-docker-image/index.md
+++ b/guide/english/containers/run-your-first-docker-image/index.md
@@ -3,7 +3,7 @@ title: Run Your First Docker Image
---
## Run Your First Docker Image
-After you are done setting up your computer and installig docker, you can simply test your Docker by running command:
+After you are done setting up your computer and installing docker, you can test your Docker installation by running the following command:
```shell
$ docker run hello-world
@@ -17,13 +17,13 @@ Hello from Docker!
This message shows that your installation appears to be working correctly.
...
```
-If you have no hello-world image locally Docker will automatically download it to your machine.
-You can list image that was downloaded or created to your machine by running command:
+If you have no `hello-world` image locally, Docker will automatically download it to your machine.
+You can list image that was downloaded or created to your machine by running the command:
```shell
$ docker image ls
```
-More Information:
+#### More Information:
-test Docker installation documentation.
+Docker installation documentation.