Browse code

fix some spelling mistakes

Signed-off-by: SataQiu <qiushida@beyondcent.com>
(cherry picked from commit f6226a2a56c38b790b59393ff4ce7f88f790c811)
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>

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.
... ...
@@ -3262,7 +3262,7 @@ definitions:
3262 3262
 
3263 3263
           <p><br /></p>
3264 3264
 
3265
-          - "ingress" makes the target port accessible on on every node,
3265
+          - "ingress" makes the target port accessible on every node,
3266 3266
             regardless of whether there is a task for the service running on
3267 3267
             that node or not.
3268 3268
           - "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)