From 6923f768c29e9264271000efe1949839b677e47d Mon Sep 17 00:00:00 2001 From: Valentin Rothberg Date: Tue, 3 Oct 2023 11:15:37 +0200 Subject: [PATCH] URGENT: heal CI: fix codespell Signed-off-by: Valentin Rothberg --- common/docs/Containerfile.5.md | 2 +- common/libimage/copier.go | 2 +- common/libimage/filters.go | 2 +- common/libnetwork/netavark/network.go | 4 ++-- common/pkg/config/config.go | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/common/docs/Containerfile.5.md b/common/docs/Containerfile.5.md index 48374c72fe..49720c502f 100644 --- a/common/docs/Containerfile.5.md +++ b/common/docs/Containerfile.5.md @@ -49,7 +49,7 @@ A Containerfile is similar to a Makefile. to a new image if necessary, before finally outputting the ID of the new image. - Container engines re-use intermediate images whenever possible. This significantly + Container engines reuse intermediate images whenever possible. This significantly accelerates the *build* process. # FORMAT diff --git a/common/libimage/copier.go b/common/libimage/copier.go index 7a6f1f1b01..fd10dd72df 100644 --- a/common/libimage/copier.go +++ b/common/libimage/copier.go @@ -72,7 +72,7 @@ type CopyOptions struct { // Default 3. MaxRetries *uint // RetryDelay used for the exponential back off of MaxRetries. - // Default 1 time.Scond. + // Default 1 time.Second. RetryDelay *time.Duration // ManifestMIMEType is the desired media type the image will be // converted to if needed. Note that it must contain the exact MIME diff --git a/common/libimage/filters.go b/common/libimage/filters.go index 88dfef9dca..9a8663e35a 100644 --- a/common/libimage/filters.go +++ b/common/libimage/filters.go @@ -289,7 +289,7 @@ func filterReferences(r *Runtime, value string) filterFunc { refString := ref.String() // FQN with tag/digest candidates := []string{refString} - // Split the reference into 3 components (twice if diggested/tagged): + // Split the reference into 3 components (twice if digested/tagged): // 1) Fully-qualified reference // 2) Without domain // 3) Without domain and path diff --git a/common/libnetwork/netavark/network.go b/common/libnetwork/netavark/network.go index 9d12bf5923..0d323db28b 100644 --- a/common/libnetwork/netavark/network.go +++ b/common/libnetwork/netavark/network.go @@ -53,7 +53,7 @@ type netavarkNetwork struct { // ipamDBPath is the path to the ip allocation bolt db ipamDBPath string - // syslog describes whenever the netavark debbug output should be log to the syslog as well. + // syslog describes whenever the netavark debug output should be log to the syslog as well. // This will use logrus to do so, make sure logrus is set up to log to the syslog. syslog bool @@ -93,7 +93,7 @@ type InitConfig struct { // PluginDirs list of directories were netavark plugins are located PluginDirs []string - // Syslog describes whenever the netavark debbug output should be log to the syslog as well. + // Syslog describes whenever the netavark debug output should be log to the syslog as well. // This will use logrus to do so, make sure logrus is set up to log to the syslog. Syslog bool } diff --git a/common/pkg/config/config.go b/common/pkg/config/config.go index 64bd403a27..b0c85abdac 100644 --- a/common/pkg/config/config.go +++ b/common/pkg/config/config.go @@ -662,7 +662,7 @@ type MachineConfig struct { Provider string `toml:"provider,omitempty"` } -// FarmConfig represents the "farm" TOML config tabls +// FarmConfig represents the "farm" TOML config tables type FarmConfig struct { // Default is the default farm to be used when farming out builds Default string `toml:"default,omitempty"`