Skip to content

Commit 39bcaee

Browse files
jsorefthaJeztah
authored andcommitted
Spelling fixes
* additional * ambiguous * anonymous * anything * application * because * before * building * capabilities * circumstances * commit * committer * compresses * concatenated * config * container * container's * current * definition * delimiter * disassociates * discovery * distributed * doesnotexist * downloads * duplicates * either * enhancing * enumerate * escapable * exactly * expect * expectations * expected * explicitly * false * filesystem * following * forbidden * git with * healthcheck * ignore * independent * inheritance * investigating * irrelevant * it * logging * looking * membership * mimic * minimum * modify * mountpoint * multiline * notifier * outputting * outside * overridden * override * parsable * plugins * precedence * propagation * provided * provides * registries * repositories * returning * settings * should * signals * someone * something * specifically * successfully * synchronize * they've * thinking * uninitialized * unintentionally * unmarshaling * unnamed * unreferenced * verify Signed-off-by: Josh Soref <jsoref@gmail.com> Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
1 parent acd20d8 commit 39bcaee

File tree

72 files changed

+129
-129
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

72 files changed

+129
-129
lines changed

CHANGELOG.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ be found.
190190
* Update runc to 54296cf40ad8143b62dbcaa1d90e520a2136ddfe [#31666](https://github.com/docker/docker/pull/31666)
191191
* Ignore cgroup2 mountpoints [opencontainers/runc#1266](https://github.com/opencontainers/runc/pull/1266)
192192
* Update containerd to 4ab9917febca54791c5f071a9d1f404867857fcc [#31662](https://github.com/docker/docker/pull/31662) [#31852](https://github.com/docker/docker/pull/31852)
193-
* Register healtcheck service before calling restore() [docker/containerd#609](https://github.com/docker/containerd/pull/609)
193+
* Register healthcheck service before calling restore() [docker/containerd#609](https://github.com/docker/containerd/pull/609)
194194
* Fix `docker exec` not working after unattended upgrades that reload apparmor profiles [#31773](https://github.com/docker/docker/pull/31773)
195195
* Fix unmounting layer without merge dir with Overlay2 [#31069](https://github.com/docker/docker/pull/31069)
196196
* Do not ignore "volume in use" errors when force-delete [#31450](https://github.com/docker/docker/pull/31450)
@@ -1087,12 +1087,12 @@ installing docker, please make sure to update them accordingly.
10871087
+ Add security options to `docker info` output [#21172](https://github.com/docker/docker/pull/21172) [#23520](https://github.com/docker/docker/pull/23520)
10881088
+ Add insecure registries to `docker info` output [#20410](https://github.com/docker/docker/pull/20410)
10891089
+ Extend Docker authorization with TLS user information [#21556](https://github.com/docker/docker/pull/21556)
1090-
+ devicemapper: expose Mininum Thin Pool Free Space through `docker info` [#21945](https://github.com/docker/docker/pull/21945)
1090+
+ devicemapper: expose Minimum Thin Pool Free Space through `docker info` [#21945](https://github.com/docker/docker/pull/21945)
10911091
* API now returns a JSON object when an error occurs making it more consistent [#22880](https://github.com/docker/docker/pull/22880)
10921092
- Prevent `docker run -i --restart` from hanging on exit [#22777](https://github.com/docker/docker/pull/22777)
10931093
- Fix API/CLI discrepancy on hostname validation [#21641](https://github.com/docker/docker/pull/21641)
10941094
- Fix discrepancy in the format of sizes in `stats` from HumanSize to BytesSize [#21773](https://github.com/docker/docker/pull/21773)
1095-
- authz: when request is denied return forbbiden exit code (403) [#22448](https://github.com/docker/docker/pull/22448)
1095+
- authz: when request is denied return forbidden exit code (403) [#22448](https://github.com/docker/docker/pull/22448)
10961096
- Windows: fix tty-related displaying issues [#23878](https://github.com/docker/docker/pull/23878)
10971097

10981098
### Runtime
@@ -1887,7 +1887,7 @@ by another client (#15489)
18871887

18881888
#### Remote API
18891889

1890-
- Fix unmarshalling of Command and Entrypoint
1890+
- Fix unmarshaling of Command and Entrypoint
18911891
- Set limit for minimum client version supported
18921892
- Validate port specification
18931893
- Return proper errors when attach/reattach fail
@@ -2572,7 +2572,7 @@ With the ongoing changes to the networking and execution subsystems of docker te
25722572
- Fix ADD caching issue with . prefixed path
25732573
- Fix docker build on devicemapper by reverting sparse file tar option
25742574
- Fix issue with file caching and prevent wrong cache hit
2575-
* Use same error handling while unmarshalling CMD and ENTRYPOINT
2575+
* Use same error handling while unmarshaling CMD and ENTRYPOINT
25762576

25772577
#### Documentation
25782578

Dockerfile.aarch64

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ RUN set -x \
9393
&& rm -rf "$SECCOMP_PATH"
9494

9595
# Install Go
96-
# We don't have official binary golang 1.7.5 tarballs for ARM64, eigher for Go or
96+
# We don't have official binary golang 1.7.5 tarballs for ARM64, either for Go or
9797
# bootstrap, so we use golang-go (1.6) as bootstrap to build Go from source code.
9898
# We don't use the official ARMv6 released binaries as a GOROOT_BOOTSTRAP, because
9999
# not all ARM64 platforms support 32-bit mode. 32-bit mode is optional for ARMv8.

api/server/router/container/container_routes.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ func (s *containerRouter) getContainersLogs(ctx context.Context, w http.Response
102102
}
103103

104104
// doesn't matter what version the client is on, we're using this internally only
105-
// also do we need size? i'm thinkin no we don't
105+
// also do we need size? i'm thinking no we don't
106106
raw, err := s.backend.ContainerInspect(containerName, false, api.DefaultVersion)
107107
if err != nil {
108108
return err

api/swagger.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1637,7 +1637,7 @@ definitions:
16371637
may not be applied if the version number has changed from the last read. In other words,
16381638
if two update requests specify the same base version, only one of the requests can succeed.
16391639
As a result, two separate update requests that happen at the same time will not
1640-
unintentially overwrite each other.
1640+
unintentionally overwrite each other.
16411641
type: "object"
16421642
properties:
16431643
Index:

api/types/filters/parse_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ func TestArgsMatch(t *testing.T) {
228228
"created": {"tod": true}},
229229
}: "created",
230230
{map[string]map[string]bool{
231-
"created": {"anyting": true, "to*": true}},
231+
"created": {"anything": true, "to*": true}},
232232
}: "created",
233233
}
234234

api/types/swarm/swarm.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package swarm
22

33
import "time"
44

5-
// ClusterInfo represents info about the cluster for outputing in "info"
5+
// ClusterInfo represents info about the cluster for outputting in "info"
66
// it contains the same information as "Swarm", but without the JoinTokens
77
type ClusterInfo struct {
88
ID string

builder/dockerfile/buildargs_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ func TestGetAllAllowed(t *testing.T) {
2020
})
2121

2222
buildArgs.AddMetaArg("ArgFromMeta", strPtr("frommeta1"))
23-
buildArgs.AddMetaArg("ArgFromMetaOverriden", strPtr("frommeta2"))
23+
buildArgs.AddMetaArg("ArgFromMetaOverridden", strPtr("frommeta2"))
2424
buildArgs.AddMetaArg("ArgFromMetaNotUsed", strPtr("frommeta3"))
2525

2626
buildArgs.AddArg("ArgOverriddenByOptions", strPtr("fromdockerfile2"))
2727
buildArgs.AddArg("ArgWithDefaultInDockerfile", strPtr("fromdockerfile1"))
2828
buildArgs.AddArg("ArgNoDefaultInDockerfile", nil)
2929
buildArgs.AddArg("ArgNoDefaultInDockerfileFromOptions", nil)
3030
buildArgs.AddArg("ArgFromMeta", nil)
31-
buildArgs.AddArg("ArgFromMetaOverriden", strPtr("fromdockerfile3"))
31+
buildArgs.AddArg("ArgFromMetaOverridden", strPtr("fromdockerfile3"))
3232

3333
all := buildArgs.GetAllAllowed()
3434
expected := map[string]string{
@@ -37,7 +37,7 @@ func TestGetAllAllowed(t *testing.T) {
3737
"ArgWithDefaultInDockerfile": "fromdockerfile1",
3838
"ArgNoDefaultInDockerfileFromOptions": "fromopt3",
3939
"ArgFromMeta": "frommeta1",
40-
"ArgFromMetaOverriden": "fromdockerfile3",
40+
"ArgFromMetaOverridden": "fromdockerfile3",
4141
}
4242
assert.Equal(t, expected, all)
4343
}

client/client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ type Client struct {
9191
// CheckRedirect specifies the policy for dealing with redirect responses:
9292
// If the request is non-GET return `ErrRedirect`. Otherwise use the last response.
9393
//
94-
// Go 1.8 changes behavior for HTTP redirects (specificlaly 301, 307, and 308) in the client .
94+
// Go 1.8 changes behavior for HTTP redirects (specifically 301, 307, and 308) in the client .
9595
// The Docker client (and by extension docker API client) can be made to to send a request
9696
// like POST /containers//start where what would normally be in the name section of the URL is empty.
9797
// This triggers an HTTP 301 from the daemon.

client/container_wait.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
// indicated by the given condition, either "not-running" (default),
1515
// "next-exit", or "removed".
1616
//
17-
// If this client's API version is beforer 1.30, condition is ignored and
17+
// If this client's API version is before 1.30, condition is ignored and
1818
// ContainerWait will return immediately with the two channels, as the server
1919
// will wait as if the condition were "not-running".
2020
//
@@ -23,7 +23,7 @@ import (
2323
// then returns two channels on which the caller can wait for the exit status
2424
// of the container or an error if there was a problem either beginning the
2525
// wait request or in getting the response. This allows the caller to
26-
// sychronize ContainerWait with other calls, such as specifying a
26+
// synchronize ContainerWait with other calls, such as specifying a
2727
// "next-exit" condition before issuing a ContainerStart request.
2828
func (cli *Client) ContainerWait(ctx context.Context, containerID string, condition container.WaitCondition) (<-chan container.ContainerWaitOKBody, <-chan error) {
2929
if versions.LessThan(cli.ClientVersion(), "1.30") {

container/container_unix.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ func (container *Container) UpdateContainer(hostConfig *containertypes.HostConfi
269269
cResources := &container.HostConfig.Resources
270270

271271
// validate NanoCPUs, CPUPeriod, and CPUQuota
272-
// Becuase NanoCPU effectively updates CPUPeriod/CPUQuota,
272+
// Because NanoCPU effectively updates CPUPeriod/CPUQuota,
273273
// once NanoCPU is already set, updating CPUPeriod/CPUQuota will be blocked, and vice versa.
274274
// In the following we make sure the intended update (resources) does not conflict with the existing (cResource).
275275
if resources.NanoCPUs > 0 && cResources.CPUPeriod > 0 {

0 commit comments

Comments
 (0)