From bf14bacac3f1cae15ce7b32b5341122c305e630e Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Fri, 16 Jan 2015 23:36:50 +0100 Subject: [PATCH] Fix typo in deprecation message. Because the doc maintainers don't like Cockney. Signed-off-by: Sebastiaan van Stijn --- api/client/commands.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/client/commands.go b/api/client/commands.go index 9b67001c18..237caa6227 100644 --- a/api/client/commands.go +++ b/api/client/commands.go @@ -1161,7 +1161,7 @@ func (cli *DockerCli) CmdImport(args ...string) error { v.Set("repo", repository) if cmd.NArg() == 3 { - fmt.Fprintf(cli.err, "[DEPRECATED] The format 'URL|- [REPOSITORY [TAG]]' as been deprecated. Please use URL|- [REPOSITORY[:TAG]]\n") + fmt.Fprintf(cli.err, "[DEPRECATED] The format 'URL|- [REPOSITORY [TAG]]' has been deprecated. Please use URL|- [REPOSITORY[:TAG]]\n") v.Set("tag", cmd.Arg(2)) }