Merge pull request #33465 from ChenMin46/fix_typos
Fix Typos: continer,contianer -> container Upstream-commit: 9fbcec6219aad74201da428b0b12141b5c812609 Component: engine
This commit is contained in:
@ -10,7 +10,7 @@ import (
|
||||
"github.com/docker/docker/api/types/versions"
|
||||
)
|
||||
|
||||
// ContainerWait waits until the specified continer is in a certain state
|
||||
// ContainerWait waits until the specified container is in a certain state
|
||||
// indicated by the given condition, either "not-running" (default),
|
||||
// "next-exit", or "removed".
|
||||
//
|
||||
|
||||
@ -180,7 +180,7 @@ const (
|
||||
WaitConditionRemoved
|
||||
)
|
||||
|
||||
// Wait waits until the continer is in a certain state indicated by the given
|
||||
// Wait waits until the container is in a certain state indicated by the given
|
||||
// condition. A context must be used for cancelling the request, controlling
|
||||
// timeouts, and avoiding goroutine leaks. Wait must be called without holding
|
||||
// the state lock. Returns a channel from which the caller will receive the
|
||||
|
||||
@ -448,7 +448,7 @@ func (s *DockerSwarmSuite) TestOverlayAttachableReleaseResourcesOnFailure(c *che
|
||||
out, err = d.Cmd("run", "-d", "--network", "ovnet", "--name", "c1", "--ip", "10.10.9.33", "busybox", "top")
|
||||
c.Assert(err, checker.IsNil, check.Commentf(out))
|
||||
|
||||
// Attempt to attach another contianer with same IP, must fail
|
||||
// Attempt to attach another container with same IP, must fail
|
||||
_, err = d.Cmd("run", "-d", "--network", "ovnet", "--name", "c2", "--ip", "10.10.9.33", "busybox", "top")
|
||||
c.Assert(err, checker.NotNil)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user