From 01059cba78be1796c2152dea53d7f0461aaba1da Mon Sep 17 00:00:00 2001 From: angt Date: Wed, 2 Sep 2015 10:43:49 +0200 Subject: [PATCH] Fix typo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Adrien Gallouët --- api/client/save.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/client/save.go b/api/client/save.go index ee19d7767d..fc51e60007 100644 --- a/api/client/save.go +++ b/api/client/save.go @@ -16,7 +16,7 @@ import ( // Usage: docker save [OPTIONS] IMAGE [IMAGE...] func (cli *DockerCli) CmdSave(args ...string) error { cmd := Cli.Subcmd("save", []string{"IMAGE [IMAGE...]"}, "Save an image(s) to a tar archive (streamed to STDOUT by default)", true) - outfile := cmd.String([]string{"o", "-output"}, "", "Write to an file, instead of STDOUT") + outfile := cmd.String([]string{"o", "-output"}, "", "Write to a file, instead of STDOUT") cmd.Require(flag.Min, 1) cmd.ParseFlags(args, true)