fix misspelling
This commit is contained in:
parent
49950ebf28
commit
ce7d4282ca
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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),
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
Loading…
Reference in New Issue