summaryrefslogtreecommitdiff
path: root/cmd/podman
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2022-05-25 10:32:48 -0400
committerGitHub <noreply@github.com>2022-05-25 10:32:48 -0400
commitaf01cd06dd2b8da743c5a52cb43b53fcfaef648f (patch)
treeb98edfb7e899911c159263164b31bd5f91ece299 /cmd/podman
parent800a367d737828193de5e41f8ad5587e2dde1f59 (diff)
parent429b1f7685129974399c599964689e1050a52141 (diff)
downloadpodman-af01cd06dd2b8da743c5a52cb43b53fcfaef648f.tar.gz
podman-af01cd06dd2b8da743c5a52cb43b53fcfaef648f.tar.bz2
podman-af01cd06dd2b8da743c5a52cb43b53fcfaef648f.zip
Merge pull request #14357 from rhatdan/codespell
Fix codespell errors
Diffstat (limited to 'cmd/podman')
-rw-r--r--cmd/podman/common/completion.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/common/completion.go b/cmd/podman/common/completion.go
index 285cab1b9..3720e9608 100644
--- a/cmd/podman/common/completion.go
+++ b/cmd/podman/common/completion.go
@@ -1171,7 +1171,7 @@ func getMethodNames(f reflect.Value, prefix string) []formatSuggestion {
if kind == reflect.Struct || kind == reflect.Map {
suffix = "."
}
- // From a template users POV it is not importent when the use a struct field or method.
+ // From a template users POV it is not important when the use a struct field or method.
// They only notice the difference when the function requires arguments.
// So lets be nice and let the user know that this method requires arguments via the help text.
// Note since this is actually a method on a type the first argument is always fix so we should skip it.