Explorar el Código

fix some spelling mistakes

Signed-off-by: SataQiu <qiushida@beyondcent.com>
SataQiu hace 5 años
padre
commit
f6226a2a56
Se han modificado 3 ficheros con 3 adiciones y 3 borrados
  1. 1 1
      MAINTAINERS
  2. 1 1
      api/swagger.yaml
  3. 1 1
      integration-cli/docker_cli_restart_test.go

+ 1 - 1
MAINTAINERS

@@ -111,7 +111,7 @@
 			# still stumble into him in our issue tracker, or on IRC.
 			"erikh",
 
-			# Evan Hazlett is the creator of of the Shipyard and Interlock open source projects,
+			# Evan Hazlett is the creator of the Shipyard and Interlock open source projects,
 			# and the author of "Orca", which became the foundation of Docker Universal Control
 			# Plane (UCP). As a maintainer, Evan helped integrating SwarmKit (secrets, tasks)
 			# into the Docker engine.

+ 1 - 1
api/swagger.yaml

@@ -3287,7 +3287,7 @@ definitions:
 
           <p><br /></p>
 
-          - "ingress" makes the target port accessible on on every node,
+          - "ingress" makes the target port accessible on every node,
             regardless of whether there is a task for the service running on
             that node or not.
           - "host" bypasses the routing mesh and publish the port directly on

+ 1 - 1
integration-cli/docker_cli_restart_test.go

@@ -292,7 +292,7 @@ func (s *DockerSuite) TestRestartContainerwithRestartPolicy(c *check.C) {
 	dockerCmd(c, "start", id1)
 	dockerCmd(c, "start", id2)
 
-	// Kill the containers, making sure the are stopped at the end of the test
+	// Kill the containers, making sure they are stopped at the end of the test
 	dockerCmd(c, "kill", id1)
 	dockerCmd(c, "kill", id2)
 	err = waitInspect(id1, "{{ .State.Restarting }} {{ .State.Running }}", "false false", waitTimeout)