Skip to content

Commit 631abd1

Browse files
authored
Spelling fixes (#2571)
Signed-off-by: Ville Skyttä <ville.skytta@iki.fi>
1 parent dd0450a commit 631abd1

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docker/api/container.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1125,7 +1125,7 @@ def stats(self, container, decode=None, stream=True):
11251125
else:
11261126
if decode:
11271127
raise errors.InvalidArgument(
1128-
"decode is only available in conjuction with stream=True"
1128+
"decode is only available in conjunction with stream=True"
11291129
)
11301130
return self._result(self._get(url, params={'stream': False}),
11311131
json=True)

docs/change-log.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ Change log
129129

130130
### Bugfixes
131131

132-
* Fix base_url to keep TCP protocol on utils.py by letting the responsability of changing the
132+
* Fix base_url to keep TCP protocol on utils.py by letting the responsibility of changing the
133133
protocol to `parse_host` afterwards, letting `base_url` with the original value.
134134
* XFAIL test_attach_stream_and_cancel on TLS
135135

@@ -1233,7 +1233,7 @@ like the others
12331233
(`Client.volumes`, `Client.create_volume`, `Client.inspect_volume`,
12341234
`Client.remove_volume`).
12351235
* Added support for the `group_add` parameter in `create_host_config`.
1236-
* Added support for the CPU CFS (`cpu_quota` and `cpu_period`) parameteres
1236+
* Added support for the CPU CFS (`cpu_quota` and `cpu_period`) parameters
12371237
in `create_host_config`.
12381238
* Added support for the archive API endpoint (`Client.get_archive`,
12391239
`Client.put_archive`).

tests/unit/utils_build_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ def test_parent_directory(self):
335335
# Dockerignore reference stipulates that absolute paths are
336336
# equivalent to relative paths, hence /../foo should be
337337
# equivalent to ../foo. It also stipulates that paths are run
338-
# through Go's filepath.Clean, which explicitely "replace
338+
# through Go's filepath.Clean, which explicitly "replace
339339
# "/.." by "/" at the beginning of a path".
340340
assert exclude_paths(
341341
base,

0 commit comments

Comments
 (0)