Skip to content

Commit f38310b

Browse files
committed
Fix typo in across.
Signed-off-by: apostasie <[email protected]>
1 parent 81c6a30 commit f38310b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/dev/auditing_dockerfile.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ On a warm cache, it is still over 150MB and 30+ seconds.
255255
In and of itself, this is hard to reduce, as we need these...
256256

257257
Actions:
258-
- [ ] we could cache the module download location to reduce round-trips on modules that are shared accross
258+
- [ ] we could cache the module download location to reduce round-trips on modules that are shared across
259259
different projects
260260
- [ ] we are likely installing nerdctl modules six times - (once per architecture during the build phase, then once per
261261
ubuntu version and architecture during the tests runs (this is not even accounted for in the audit above)) - it should

docs/dev/store.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ containers can be named the same), etc.
2323
However, storing data on the filesystem in a reliable way comes with challenges:
2424
- incomplete writes may happen (because of a system restart, or an application crash), leaving important structured files
2525
in a broken state
26-
- concurrent writes, or reading while writing would obviously be a problem as well, be it accross goroutines, or between
26+
- concurrent writes, or reading while writing would obviously be a problem as well, be it across goroutines, or between
2727
concurrent executions of the nerdctl binary, or embedded in a third-party application that does concurrently access resources
2828

2929
The `pkg/store` package does provide a "storage" abstraction that takes care of these issues, generally providing

docs/dir.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Data volume
6565

6666
Can be overridden with `nerdctl --cni-netconfpath=<NETCONFPATH>` flag and environment variable `$NETCONFPATH`.
6767

68-
At the top-level of <NETCONFPATH>, network (files) are shared accross all namespaces.
68+
At the top-level of <NETCONFPATH>, network (files) are shared across all namespaces.
6969
Sub-folders inside <NETCONFPATH> are only available to the namespace bearing the same name,
7070
and its networks definitions are private.
7171

0 commit comments

Comments
 (0)