From f9152d075a3175ad62f77b3166c3cb0df2c310f2 Mon Sep 17 00:00:00 2001 From: Daniel J Walsh Date: Thu, 26 Jul 2018 16:10:46 -0400 Subject: Cleanup descriptions and help information Signed-off-by: Daniel J Walsh Closes: #1167 Approved by: baude --- cmd/podman/rm.go | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) (limited to 'cmd/podman/rm.go') diff --git a/cmd/podman/rm.go b/cmd/podman/rm.go index 9fc65cb4d..c0ec7d9f6 100644 --- a/cmd/podman/rm.go +++ b/cmd/podman/rm.go @@ -22,11 +22,14 @@ var ( }, LatestFlag, } - rmDescription = "Remove one or more containers" - rmCommand = cli.Command{ - Name: "rm", - Usage: fmt.Sprintf(`podman rm will remove one or more containers from the host. The container name or ID can be used. - This does not remove images. Running containers will not be removed without the -f option.`), + rmDescription = fmt.Sprintf(` +Podman rm will remove one or more containers from the host. +The container name or ID can be used. This does not remove images. +Running containers will not be removed without the -f option. +`) + rmCommand = cli.Command{ + Name: "rm", + Usage: "Remove one or more containers", Description: rmDescription, Flags: rmFlags, Action: rmCmd, -- cgit v1.2.3-54-g00ecf