Browse code

fix some spelling mistakes

Signed-off-by: SataQiu <qiushida@beyondcent.com>

SataQiu authored on 2019/08/13 23:46:32
Showing 3 changed files
... ...
@@ -111,7 +111,7 @@
111 111
 			# still stumble into him in our issue tracker, or on IRC.
112 112
 			"erikh",
113 113
 
114
-			# Evan Hazlett is the creator of of the Shipyard and Interlock open source projects,
114
+			# Evan Hazlett is the creator of the Shipyard and Interlock open source projects,
115 115
 			# and the author of "Orca", which became the foundation of Docker Universal Control
116 116
 			# Plane (UCP). As a maintainer, Evan helped integrating SwarmKit (secrets, tasks)
117 117
 			# into the Docker engine.
... ...
@@ -3287,7 +3287,7 @@ definitions:
3287 3287
 
3288 3288
           <p><br /></p>
3289 3289
 
3290
-          - "ingress" makes the target port accessible on on every node,
3290
+          - "ingress" makes the target port accessible on every node,
3291 3291
             regardless of whether there is a task for the service running on
3292 3292
             that node or not.
3293 3293
           - "host" bypasses the routing mesh and publish the port directly on
... ...
@@ -292,7 +292,7 @@ func (s *DockerSuite) TestRestartContainerwithRestartPolicy(c *check.C) {
292 292
 	dockerCmd(c, "start", id1)
293 293
 	dockerCmd(c, "start", id2)
294 294
 
295
-	// Kill the containers, making sure the are stopped at the end of the test
295
+	// Kill the containers, making sure they are stopped at the end of the test
296 296
 	dockerCmd(c, "kill", id1)
297 297
 	dockerCmd(c, "kill", id2)
298 298
 	err = waitInspect(id1, "{{ .State.Restarting }} {{ .State.Running }}", "false false", waitTimeout)