diff --git a/src/cmd/rmi.go b/src/cmd/rmi.go index 63a3b19de..f766387c5 100644 --- a/src/cmd/rmi.go +++ b/src/cmd/rmi.go @@ -1,5 +1,5 @@ /* - * Copyright © 2019 – 2022 Red Hat Inc. + * Copyright © 2019 – 2024 Red Hat Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -44,13 +44,13 @@ var rmiCmd = &cobra.Command{ func init() { flags := rmiCmd.Flags() - flags.BoolVarP(&rmiFlags.deleteAll, "all", "a", false, "Remove all toolbox containers") + flags.BoolVarP(&rmiFlags.deleteAll, "all", "a", false, "Remove all toolbox images") flags.BoolVarP(&rmiFlags.forceDelete, "force", "f", false, - "Force the removal of running and paused toolbox containers") + "Force the removal of toolbox images that are used by toolbox containers") rmiCmd.SetHelpFunc(rmiHelp) rootCmd.AddCommand(rmiCmd)