From 6ec52ebca92bc21ab75a99fae4a85d10204706c4 Mon Sep 17 00:00:00 2001 From: sneak Date: Tue, 8 Sep 2020 20:37:50 -0700 Subject: [PATCH] fix markdown typo on startup msg --- bot/bot.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot/bot.go b/bot/bot.go index ea0333c..117b8a2 100644 --- a/bot/bot.go +++ b/bot/bot.go @@ -72,7 +72,7 @@ func (b *Bot) Main() int { // Lets create a bot channel for logging debug messages into b.CreateBotDebuggingChannelIfNeeded() - msg := fmt.Sprintf("_**%s** (version `%s`) is now starting up", b.BotName, b.Version) + msg := fmt.Sprintf("_**%s** (version `%s`) is now starting up_", b.BotName, b.Version) b.SendMsgToDebuggingChannel(msg, "") // Lets start listening to some channels via the websocket!