diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2018-07-26 16:10:46 -0400 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-07-27 02:17:29 +0000 |
commit | f9152d075a3175ad62f77b3166c3cb0df2c310f2 (patch) | |
tree | b097946e3ff4f53138eba68e8983f453e8298213 /cmd/podman/pull.go | |
parent | c1424095983992f56ffa50e79c0139cef8893f6d (diff) | |
download | podman-f9152d075a3175ad62f77b3166c3cb0df2c310f2.tar.gz podman-f9152d075a3175ad62f77b3166c3cb0df2c310f2.tar.bz2 podman-f9152d075a3175ad62f77b3166c3cb0df2c310f2.zip |
Cleanup descriptions and help information
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Closes: #1167
Approved by: baude
Diffstat (limited to 'cmd/podman/pull.go')
-rw-r--r-- | cmd/podman/pull.go | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/cmd/podman/pull.go b/cmd/podman/pull.go index a1e99fce2..431c1e0ed 100644 --- a/cmd/podman/pull.go +++ b/cmd/podman/pull.go @@ -44,12 +44,14 @@ var ( }, } - pullDescription = "Pulls an image from a registry and stores it locally.\n" + - "An image can be pulled using its tag or digest. If a tag is not\n" + - "specified, the image with the 'latest' tag (if it exists) is pulled." + pullDescription = ` +Pulls an image from a registry and stores it locally. +An image can be pulled using its tag or digest. If a tag is not +specified, the image with the 'latest' tag (if it exists) is pulled +` pullCommand = cli.Command{ Name: "pull", - Usage: "pull an image from a registry", + Usage: "Pull an image from a registry", Description: pullDescription, Flags: pullFlags, Action: pullCmd, |