fix: Fix message when invalid status is provided for uptime robot

This commit is contained in:
Zachary Seguin 2022-01-14 19:27:49 -05:00
parent 02b39927ab
commit 69bd5ddb0b
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ func monitorQuery(command *bot.Cmd) (string, error) {
}
if len(statuses) == 0 {
lines = append(lines, fmt.Sprintf("Please provided at least one status to filter with."))
lines = append(lines, fmt.Sprintf("Please provide at least one status to filter with."))
return strings.Join(lines, "\n"), nil
}