diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2021-09-24 09:15:23 -0400 |
---|---|---|
committer | Daniel J Walsh <dwalsh@redhat.com> | 2021-09-24 09:29:08 -0400 |
commit | a97551eb209d882f4aea60764e534739d230645f (patch) | |
tree | 07ac8c2103b35d0fc6b3c53d8bdb40605b7e8934 /cmd/podman/system | |
parent | 9c48947c73b3bac33c18cb94aa6e1c4abc709cca (diff) | |
download | podman-a97551eb209d882f4aea60764e534739d230645f.tar.gz podman-a97551eb209d882f4aea60764e534739d230645f.tar.bz2 podman-a97551eb209d882f4aea60764e534739d230645f.zip |
Fix english on prune prompt
Google docs found this while writing Podman in Action book.
[NO TESTS NEEDED]
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'cmd/podman/system')
-rw-r--r-- | cmd/podman/system/prune.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cmd/podman/system/prune.go b/cmd/podman/system/prune.go index e09e2d5e5..5565ea2f9 100644 --- a/cmd/podman/system/prune.go +++ b/cmd/podman/system/prune.go @@ -113,15 +113,15 @@ func prune(cmd *cobra.Command, args []string) error { func createPruneWarningMessage(pruneOpts entities.SystemPruneOptions) string { if pruneOpts.All { - return `WARNING! This will remove: + return `WARNING! This command removes: - all stopped containers - all networks not used by at least one container%s - - all images without at least one container associated to them + - all images without at least one container associated with them - all build cache %s` } - return `WARNING! This will remove: + return `WARNING! This command removes: - all stopped containers - all networks not used by at least one container%s - all dangling images |