From d85ef59e05ed6e0ca129df86bdce05ba07bb090b Mon Sep 17 00:00:00 2001 From: lyx0 Date: Wed, 20 Oct 2021 00:33:31 +0200 Subject: [PATCH] typo --- pkg/commands/ping.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/commands/ping.go b/pkg/commands/ping.go index 7f3845d..a511013 100644 --- a/pkg/commands/ping.go +++ b/pkg/commands/ping.go @@ -12,7 +12,7 @@ func Ping(target string, nb *bot.Bot) { commandCount := fmt.Sprint(utils.GetCommandsUsed()) botUptime := humanize.Time(nb.Uptime) - reply := fmt.Sprintf("Pong! :) Commands Used: %v, Last restart: %v", commandCount, botUptime) + reply := fmt.Sprintf("Pong! :) Commands used: %v, Last restart: %v", commandCount, botUptime) nb.Send(target, reply) }