Browse code

Fix typo error of dockernetworks.md

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

Wen Cheng Ma authored on 2016/02/19 18:18:52
Showing 1 changed files
... ...
@@ -86,12 +86,12 @@ lo        Link encap:Local Loopback
86 86
 The `host` network adds a container on the hosts network stack. You'll find the
87 87
 network configuration inside the container is identical to the host.
88 88
 
89
-With the exception of the the `bridge` network, you really don't need to
89
+With the exception of the `bridge` network, you really don't need to
90 90
 interact with these default networks. While you can list and inspect them, you
91 91
 cannot remove them. They are required by your Docker installation. However, you
92 92
 can add your own user-defined networks and these you can remove when you no
93 93
 longer need them. Before you learn more about creating your own networks, it is
94
-worth looking at the `default` network a bit.
94
+worth looking at the default `bridge` network a bit.
95 95
 
96 96
 
97 97
 ### The default bridge network in detail
... ...
@@ -279,7 +279,7 @@ ff02::1	ip6-allnodes
279 279
 ff02::2	ip6-allrouters
280 280
 ```
281 281
 
282
-The default `docker0` bridge network supports the use of port mapping and  `docker run --link` to allow communications between containers in the `docker0` network. These techniques are cumbersome to set up and prone to error. While they are still available to you as techniques, it is better to avoid them and define your own bridge networks instead.
282
+The default `docker0` bridge network supports the use of port mapping and `docker run --link` to allow communications between containers in the `docker0` network. These techniques are cumbersome to set up and prone to error. While they are still available to you as techniques, it is better to avoid them and define your own bridge networks instead.
283 283
 
284 284
 ## User-defined networks
285 285
 
... ...
@@ -483,7 +483,7 @@ built-in network drivers. For example:
483 483
 
484 484
     $ docker network create --driver weave mynet
485 485
 
486
-You can inspect it, add containers too and from it, and so forth. Of course,
486
+You can inspect it, add containers to and from it, and so forth. Of course,
487 487
 different plugins may make use of different technologies or frameworks. Custom
488 488
 networks can include features not present in Docker's default networks. For more
489 489
 information on writing plugins, see [Extending Docker](../../extend/index.md) and