docs: confirm prompt matches language of command

This commit is contained in:
2022-01-04 11:37:04 +01:00
parent 6d76b3646a
commit 2ebb00c9d4

View File

@ -39,7 +39,7 @@ var appRemoveCommand = &cli.Command{
if !internal.Force {
response := false
prompt := &survey.Confirm{
Message: fmt.Sprintf("about to delete %s, are you sure?", app.Name),
Message: fmt.Sprintf("about to remove %s, are you sure?", app.Name),
}
if err := survey.AskOne(prompt, &response); err != nil {
logrus.Fatal(err)