From 0a156211d789c5192f571ae7a7288517d3be4981 Mon Sep 17 00:00:00 2001 From: Ethan Soucy Date: Thu, 30 Sep 2021 11:01:27 -0400 Subject: [NO TESTS NEEDED] Fix typo in storage.conf file exists message Signed-off-by: Ethan Soucy --- libpod/reset.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libpod/reset.go b/libpod/reset.go index 96fa44c2f..7b25ed680 100644 --- a/libpod/reset.go +++ b/libpod/reset.go @@ -123,7 +123,7 @@ func (r *Runtime) Reset(ctx context.Context) error { if storageConfPath, err := storage.DefaultConfigFile(rootless.IsRootless()); err == nil { if _, err = os.Stat(storageConfPath); err == nil { fmt.Printf("A storage.conf file exists at %s\n", storageConfPath) - fmt.Println("You should remove this file if you did not modified the configuration.") + fmt.Println("You should remove this file if you did not modify the configuration.") } } else { if prevError != nil { -- cgit v1.2.3-54-g00ecf