fix typos in messages

This commit is contained in:
Tom Wiesing 2022-12-08 10:36:07 +01:00
parent 20448c67a3
commit aefde6eec2
No known key found for this signature in database
29 changed files with 91 additions and 55 deletions

View file

@ -29,17 +29,17 @@ func (purge) Description() wisski_distillery.Description {
}
var errPurgeNoDetails = exit.Error{
Message: "Unable to find instance details for purge: %s",
Message: "unable to find instance details for purge: %s",
ExitCode: exit.ExitGeneric,
}
var errPurgeNoConfirmation = exit.Error{
Message: "Aborting after request was not confirmed. Either type `yes` or pass `--yes` on the command line",
Message: "aborting after request was not confirmed. either type `yes` or pass `--yes` on the command line",
ExitCode: exit.ExitGeneric,
}
var errPurgeGeneric = exit.Error{
Message: "Unable to purge instance %s: %s",
Message: "unable to purge instance %q: %s",
ExitCode: exit.ExitGeneric,
}