fix misspelling
This commit is contained in:
parent
49950ebf28
commit
ce7d4282ca
|
@ -9,7 +9,7 @@ import (
|
||||||
func NewFilter(db *database.DB) *Command {
|
func NewFilter(db *database.DB) *Command {
|
||||||
return &Command{
|
return &Command{
|
||||||
Name: "filter",
|
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{
|
Commands: []*Command{
|
||||||
{
|
{
|
||||||
Name: "add",
|
Name: "add",
|
||||||
|
|
|
@ -10,7 +10,7 @@ import (
|
||||||
func NewHostname(db *database.DB) *Command {
|
func NewHostname(db *database.DB) *Command {
|
||||||
return &Command{
|
return &Command{
|
||||||
Name: "hostname",
|
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{
|
Commands: []*Command{
|
||||||
{
|
{
|
||||||
Name: "set",
|
Name: "set",
|
||||||
|
|
|
@ -12,7 +12,7 @@ type Bot struct {
|
||||||
|
|
||||||
func NewBot(db *database.DB) *Bot {
|
func NewBot(db *database.DB) *Bot {
|
||||||
return &Bot{Command{
|
return &Bot{Command{
|
||||||
Description: "logmania bot, to configurate live all settings",
|
Description: "logmania bot, to configure live all settings",
|
||||||
Commands: []*Command{
|
Commands: []*Command{
|
||||||
NewFilter(db),
|
NewFilter(db),
|
||||||
NewHostname(db),
|
NewHostname(db),
|
||||||
|
|
|
@ -12,7 +12,7 @@ import (
|
||||||
func NewPriority(db *database.DB) *Command {
|
func NewPriority(db *database.DB) *Command {
|
||||||
return &Command{
|
return &Command{
|
||||||
Name: "priority",
|
Name: "priority",
|
||||||
Description: "list and configurate priority in channel",
|
Description: "list and configure priority in channel",
|
||||||
Commands: []*Command{
|
Commands: []*Command{
|
||||||
{
|
{
|
||||||
Name: "set",
|
Name: "set",
|
||||||
|
|
|
@ -9,7 +9,7 @@ import (
|
||||||
func NewReplace(db *database.DB) *Command {
|
func NewReplace(db *database.DB) *Command {
|
||||||
return &Command{
|
return &Command{
|
||||||
Name: "replace",
|
Name: "replace",
|
||||||
Description: "list and configurate replace content of message for channel",
|
Description: "list and configure replace content of message for channel",
|
||||||
Commands: []*Command{
|
Commands: []*Command{
|
||||||
{
|
{
|
||||||
Name: "add",
|
Name: "add",
|
||||||
|
|
|
@ -9,7 +9,7 @@ import (
|
||||||
func NewSend(db *database.DB) *Command {
|
func NewSend(db *database.DB) *Command {
|
||||||
return &Command{
|
return &Command{
|
||||||
Name: "send",
|
Name: "send",
|
||||||
Description: "list and configurate destination for hostnames",
|
Description: "list and configure destination for hostnames",
|
||||||
Commands: []*Command{
|
Commands: []*Command{
|
||||||
{
|
{
|
||||||
Name: "add",
|
Name: "add",
|
||||||
|
|
Loading…
Reference in New Issue