From f38310bb9e6afb4e4de861e02fc1877c0c69a772 Mon Sep 17 00:00:00 2001 From: apostasie Date: Fri, 6 Jun 2025 13:34:48 -0700 Subject: [PATCH] Fix typo in `across`. Signed-off-by: apostasie --- docs/dev/auditing_dockerfile.md | 2 +- docs/dev/store.md | 2 +- docs/dir.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/dev/auditing_dockerfile.md b/docs/dev/auditing_dockerfile.md index 39fd518a..37034fd9 100644 --- a/docs/dev/auditing_dockerfile.md +++ b/docs/dev/auditing_dockerfile.md @@ -255,7 +255,7 @@ On a warm cache, it is still over 150MB and 30+ seconds. In and of itself, this is hard to reduce, as we need these... Actions: -- [ ] we could cache the module download location to reduce round-trips on modules that are shared accross +- [ ] we could cache the module download location to reduce round-trips on modules that are shared across different projects - [ ] we are likely installing nerdctl modules six times - (once per architecture during the build phase, then once per ubuntu version and architecture during the tests runs (this is not even accounted for in the audit above)) - it should diff --git a/docs/dev/store.md b/docs/dev/store.md index c0954fb0..a4bd3a9b 100644 --- a/docs/dev/store.md +++ b/docs/dev/store.md @@ -23,7 +23,7 @@ containers can be named the same), etc. However, storing data on the filesystem in a reliable way comes with challenges: - incomplete writes may happen (because of a system restart, or an application crash), leaving important structured files in a broken state -- concurrent writes, or reading while writing would obviously be a problem as well, be it accross goroutines, or between +- concurrent writes, or reading while writing would obviously be a problem as well, be it across goroutines, or between concurrent executions of the nerdctl binary, or embedded in a third-party application that does concurrently access resources The `pkg/store` package does provide a "storage" abstraction that takes care of these issues, generally providing diff --git a/docs/dir.md b/docs/dir.md index 4843eadb..b3350cdd 100644 --- a/docs/dir.md +++ b/docs/dir.md @@ -65,7 +65,7 @@ Data volume Can be overridden with `nerdctl --cni-netconfpath=` flag and environment variable `$NETCONFPATH`. -At the top-level of , network (files) are shared accross all namespaces. +At the top-level of , network (files) are shared across all namespaces. Sub-folders inside are only available to the namespace bearing the same name, and its networks definitions are private.