Browse code

Correct some typos for docs

Signed-off-by: Wen Cheng Ma <wenchma@cn.ibm.com>

Wen Cheng Ma authored on 2015/11/24 16:13:05
Showing 3 changed files
... ...
@@ -375,7 +375,7 @@ networks.
375 375
 
376 376
 Within a user-defined bridge network, linking is not supported. You can
377 377
 expose and publish container ports on containers in this network. This is useful
378
-if you want make a portion of the `bridge` network available to an outside
378
+if you want to make a portion of the `bridge` network available to an outside
379 379
 network.
380 380
 
381 381
 ![Bridge network](images/network_access.png)
... ...
@@ -112,7 +112,7 @@ $ docker run -itd --name=container2 busybox
112 112
 498eaaaf328e1018042c04b2de04036fc04719a6e39a097a4f4866043a2c2152
113 113
 ```
114 114
 
115
-Then create a isolated, `bridge` network to test with.
115
+Then create an isolated, `bridge` network to test with.
116 116
 
117 117
 ```bash
118 118
 $ docker network create -d bridge isolated_nw
... ...
@@ -61,7 +61,7 @@ You can also use `docker inspect` with the container's name.
61 61
 
62 62
 Container names must be unique. That means you can only call one container
63 63
 `web`. If you want to re-use a container name you must delete the old container
64
-(with `docker rm`) before you can reuse the name with a new container. Go ahead and stop and them remove your `web` container.
64
+(with `docker rm`) before you can reuse the name with a new container. Go ahead and stop and remove your old `web` container.
65 65
 
66 66
     $ docker stop web
67 67
     web
... ...
@@ -73,7 +73,7 @@ Container names must be unique. That means you can only call one container
73 73
 
74 74
 Docker includes support for networking containers through the use of **network
75 75
 drivers**. By default, Docker provides two network drivers for you, the
76
-`bridge` and the `overlay` driver. You can also write a network driver plugin so
76
+`bridge` and the `overlay` drivers. You can also write a network driver plugin so
77 77
 that you can create your own drivers but that is an advanced task.
78 78
 
79 79
 Every installation of the Docker Engine automatically includes three default networks. You can list them: