summaryrefslogtreecommitdiff
path: root/cmd/podman/images
diff options
context:
space:
mode:
authorDaniel J Walsh <dwalsh@redhat.com>2021-09-24 09:15:23 -0400
committerDaniel J Walsh <dwalsh@redhat.com>2021-09-24 09:29:08 -0400
commita97551eb209d882f4aea60764e534739d230645f (patch)
tree07ac8c2103b35d0fc6b3c53d8bdb40605b7e8934 /cmd/podman/images
parent9c48947c73b3bac33c18cb94aa6e1c4abc709cca (diff)
downloadpodman-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/images')
-rw-r--r--cmd/podman/images/prune.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/podman/images/prune.go b/cmd/podman/images/prune.go
index 8a484495a..7e6a29d94 100644
--- a/cmd/podman/images/prune.go
+++ b/cmd/podman/images/prune.go
@@ -80,7 +80,7 @@ func prune(cmd *cobra.Command, args []string) error {
func createPruneWarningMessage(pruneOpts entities.ImagePruneOptions) string {
question := "Are you sure you want to continue? [y/N] "
if pruneOpts.All {
- return "WARNING! This will remove all images without at least one container associated to them.\n" + question
+ return "WARNING! This command removes all images without at least one container associated with them.\n" + question
}
- return "WARNING! This will remove all dangling images.\n" + question
+ return "WARNING! This command removes all dangling images.\n" + question
}