From 4093b2c0111369f9590d803c53a40b79ae2fd1dd Mon Sep 17 00:00:00 2001 From: Daniel J Walsh Date: Wed, 8 Jan 2020 09:06:52 -0500 Subject: Add codespell to validate spelling mistakes in code. Fix all errors found by codespell Signed-off-by: Daniel J Walsh --- cmd/podman/images_prune.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cmd/podman/images_prune.go') diff --git a/cmd/podman/images_prune.go b/cmd/podman/images_prune.go index 2b498f83d..8f187cbd7 100644 --- a/cmd/podman/images_prune.go +++ b/cmd/podman/images_prune.go @@ -47,11 +47,11 @@ func pruneImagesCmd(c *cliconfig.PruneImagesValues) error { fmt.Printf(` WARNING! This will remove all dangling images. Are you sure you want to continue? [y/N] `) - ans, err := reader.ReadString('\n') + answer, err := reader.ReadString('\n') if err != nil { return errors.Wrapf(err, "error reading input") } - if strings.ToLower(ans)[0] != 'y' { + if strings.ToLower(answer)[0] != 'y' { return nil } } -- cgit v1.2.3-54-g00ecf