diff --git a/bot/filter.go b/bot/filter.go index f51edb0..a84f27f 100644 --- a/bot/filter.go +++ b/bot/filter.go @@ -9,7 +9,7 @@ import ( func NewFilter(db *database.DB) *Command { return &Command{ Name: "filter", - Description: "list and configurate regex filter for channel by message content", + Description: "list and configure regex filter for channel by message content", Commands: []*Command{ { Name: "add", diff --git a/bot/hostname.go b/bot/hostname.go index 0e684f5..76e9a1f 100644 --- a/bot/hostname.go +++ b/bot/hostname.go @@ -10,7 +10,7 @@ import ( func NewHostname(db *database.DB) *Command { return &Command{ Name: "hostname", - Description: "alternative short (host)names for long IP-Addresses or URLs (and time of last recieved input)", + Description: "alternative short (host)names for long IP-Addresses or URLs (and time of last received input)", Commands: []*Command{ { Name: "set", diff --git a/bot/main.go b/bot/main.go index f18ecb8..6b6c167 100644 --- a/bot/main.go +++ b/bot/main.go @@ -12,7 +12,7 @@ type Bot struct { func NewBot(db *database.DB) *Bot { return &Bot{Command{ - Description: "logmania bot, to configurate live all settings", + Description: "logmania bot, to configure live all settings", Commands: []*Command{ NewFilter(db), NewHostname(db), diff --git a/bot/priority.go b/bot/priority.go index 18c831d..17d36e6 100644 --- a/bot/priority.go +++ b/bot/priority.go @@ -12,7 +12,7 @@ import ( func NewPriority(db *database.DB) *Command { return &Command{ Name: "priority", - Description: "list and configurate priority in channel", + Description: "list and configure priority in channel", Commands: []*Command{ { Name: "set", diff --git a/bot/replace.go b/bot/replace.go index c26cff4..717bfed 100644 --- a/bot/replace.go +++ b/bot/replace.go @@ -9,7 +9,7 @@ import ( func NewReplace(db *database.DB) *Command { return &Command{ Name: "replace", - Description: "list and configurate replace content of message for channel", + Description: "list and configure replace content of message for channel", Commands: []*Command{ { Name: "add", diff --git a/bot/send.go b/bot/send.go index bdb41f4..0638b13 100644 --- a/bot/send.go +++ b/bot/send.go @@ -9,7 +9,7 @@ import ( func NewSend(db *database.DB) *Command { return &Command{ Name: "send", - Description: "list and configurate destination for hostnames", + Description: "list and configure destination for hostnames", Commands: []*Command{ { Name: "add",