summaryrefslogtreecommitdiff
path: root/api/client/pull.go
diff options
context:
space:
mode:
authorMa Shimiao <mashimiao.fnst@cn.fujitsu.com>2015-06-09 21:33:41 +0800
committerMa Shimiao <mashimiao.fnst@cn.fujitsu.com>2015-07-02 10:33:26 +0800
commitf38232b475d126d6ea3a37d82be2c7269324e4ab (patch)
treeb3797f3a8c1167323cbff96e5e83873afcd15e58 /api/client/pull.go
parent98f988f62ceccf7237cbcb45f1095ff15f005ea9 (diff)
downloaddocker-f38232b475d126d6ea3a37d82be2c7269324e4ab.tar.gz
Unify docker commands' usage in man and help
Signed-off-by: Ma Shimiao <mashimiao.fnst@cn.fujitsu.com>
Diffstat (limited to 'api/client/pull.go')
-rw-r--r--api/client/pull.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/api/client/pull.go b/api/client/pull.go
index b2e064bc50..8607eac192 100644
--- a/api/client/pull.go
+++ b/api/client/pull.go
@@ -15,7 +15,7 @@ import (
//
// Usage: docker pull [OPTIONS] IMAGENAME[:TAG|@DIGEST]
func (cli *DockerCli) CmdPull(args ...string) error {
- cmd := cli.Subcmd("pull", []string{"NAME[:TAG|@DIGEST]"}, "Pull an image or a repository from the registry", true)
+ cmd := cli.Subcmd("pull", []string{"NAME[:TAG|@DIGEST]"}, "Pull an image or a repository from a registry", true)
allTags := cmd.Bool([]string{"a", "-all-tags"}, false, "Download all tagged images in the repository")
cmd.Require(flag.Exact, 1)