2
0
mirror of https://github.com/yagop/node-telegram-bot-api synced 2025-09-08 18:25:36 +00:00

examples: Minor cleanup

This commit is contained in:
GochoMugo
2017-01-29 18:59:05 +03:00
parent 3ed45fb624
commit 24a3f6dade
3 changed files with 5 additions and 6 deletions

View File

@@ -26,5 +26,5 @@ bot.setWebHook(`${url}/bot${TOKEN}`, {
// Just to ping!
bot.on('message', function onMessage(msg) {
bot.sendMessage(msg.chat.id, "I'm alive!");
bot.sendMessage(msg.chat.id, 'I am alive!');
});