From 73852f4f10192cf1dfea1d7683e0b5f02c07974f Mon Sep 17 00:00:00 2001 From: Alex Date: Mon, 8 May 2017 15:39:37 +0300 Subject: [PATCH] Update bot.go Fix a punctuation error in bot greeting. --- httpserver/bot.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/httpserver/bot.go b/httpserver/bot.go index 6a39181..243c075 100644 --- a/httpserver/bot.go +++ b/httpserver/bot.go @@ -187,7 +187,7 @@ func (s *Server) CommandHandler(msg *tgbotapi.Message) { } switch msg.Command() { case "start": - s.SendMessage("Привет", msg.Chat.ID, msg.MessageID) + s.SendMessage("Привет,", msg.Chat.ID, msg.MessageID) case "help": s.SendHelp(msg) case "ping":