summaryrefslogtreecommitdiff
path: root/libpod/reset.go
diff options
context:
space:
mode:
authorEthan Soucy <ethan.soucy@gmail.com>2021-09-30 11:01:27 -0400
committerEthan Soucy <ethan.soucy@gmail.com>2021-09-30 12:30:07 -0400
commit0a156211d789c5192f571ae7a7288517d3be4981 (patch)
treea56f238ced6b8a6f9364935aa7bc85f1e8a79cdd /libpod/reset.go
parent966b6030fa5cc31c163e344b64109eddeffc3529 (diff)
downloadpodman-0a156211d789c5192f571ae7a7288517d3be4981.tar.gz
podman-0a156211d789c5192f571ae7a7288517d3be4981.tar.bz2
podman-0a156211d789c5192f571ae7a7288517d3be4981.zip
[NO TESTS NEEDED] Fix typo in storage.conf file exists message
Signed-off-by: Ethan Soucy <ethan.soucy@gmail.com>
Diffstat (limited to 'libpod/reset.go')
-rw-r--r--libpod/reset.go2
1 files changed, 1 insertions, 1 deletions
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 {