diff options
author | openshift-ci[bot] <75433959+openshift-ci[bot]@users.noreply.github.com> | 2021-08-12 07:22:48 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-12 07:22:48 +0000 |
commit | de043a5a029d4d03b91f8b88ca8cee7d71dcdeed (patch) | |
tree | 11793798c376c07e4c582c8a976eae4133553070 /pkg/api/handlers | |
parent | 25ff04dcbe3212db6f72d08f3f904154bab4c0fe (diff) | |
parent | 404488a0879c84de523adeacb78c6b898a7e52c8 (diff) | |
download | podman-de043a5a029d4d03b91f8b88ca8cee7d71dcdeed.tar.gz podman-de043a5a029d4d03b91f8b88ca8cee7d71dcdeed.tar.bz2 podman-de043a5a029d4d03b91f8b88ca8cee7d71dcdeed.zip |
Merge pull request #11203 from rhatdan/codespell
Run codespell to fix spelling
Diffstat (limited to 'pkg/api/handlers')
-rw-r--r-- | pkg/api/handlers/utils/images.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/api/handlers/utils/images.go b/pkg/api/handlers/utils/images.go index 1e8edb6dd..1e3647a3e 100644 --- a/pkg/api/handlers/utils/images.go +++ b/pkg/api/handlers/utils/images.go @@ -27,7 +27,7 @@ func IsRegistryReference(name string) error { if imageRef.Transport().Name() == docker.Transport.Name() { return nil } - return errors.Errorf("unsupport transport %s in %q: only docker transport is supported", imageRef.Transport().Name(), name) + return errors.Errorf("unsupported transport %s in %q: only docker transport is supported", imageRef.Transport().Name(), name) } // ParseStorageReference parses the specified image name to a |