summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoram Wilander <jwawilander@gmail.com>2015-09-02 20:14:31 -0400
committerJoram Wilander <jwawilander@gmail.com>2015-09-02 20:14:31 -0400
commitfb75b264093437fff996c20cd918a16f2b8cd82d (patch)
tree4581abed82ab328bc5d64916014f6c0a25b256bd
parent2c06ec89feb783d10fa10c77ab4b192522e35f3d (diff)
parent0fc74579943fb229f8939931a11054624c7910c0 (diff)
downloadchat-fb75b264093437fff996c20cd918a16f2b8cd82d.tar.gz
chat-fb75b264093437fff996c20cd918a16f2b8cd82d.tar.bz2
chat-fb75b264093437fff996c20cd918a16f2b8cd82d.zip
Merge pull request #571 from mishimi/patch-3
Updating help text to fix typo
-rw-r--r--api/command.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/api/command.go b/api/command.go
index 749cbf790..2919e93a0 100644
--- a/api/command.go
+++ b/api/command.go
@@ -154,7 +154,7 @@ func echoCommand(c *Context, command *model.Command) bool {
return true
} else if strings.Index(cmd, command.Command) == 0 {
- command.AddSuggestion(&model.SuggestCommand{Suggestion: cmd, Description: "Echo back text from your account, /echo \"message\" [delay in seoncds]"})
+ command.AddSuggestion(&model.SuggestCommand{Suggestion: cmd, Description: "Echo back text from your account, /echo \"message\" [delay in seconds]"})
}
return false