From 59117e6e3d3407a5449df6f40d924c10e9bfaa78 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miloslav=20Trma=C4=8D?= Date: Sat, 7 Jul 2018 02:40:39 +0200 Subject: [PATCH] Fix a typo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Miloslav Trmač --- cmd/skopeo/copy.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/skopeo/copy.go b/cmd/skopeo/copy.go index 9bffa0af..69d7503e 100644 --- a/cmd/skopeo/copy.go +++ b/cmd/skopeo/copy.go @@ -171,7 +171,7 @@ func (opts *copyOptions) run(c *cli.Context) error { case "v2s2": manifestType = manifest.DockerV2Schema2MediaType default: - return fmt.Errorf("unknown format %q. Choose on of the supported formats: 'oci', 'v2s1', or 'v2s2'", c.String("format")) + return fmt.Errorf("unknown format %q. Choose one of the supported formats: 'oci', 'v2s1', or 'v2s2'", c.String("format")) } }