From 70fa5b405a6b0050b71d53d4c779c61d7e268739 Mon Sep 17 00:00:00 2001 From: Nacho Soler Date: Wed, 15 Jun 2016 13:30:57 +0200 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1d23244..339a946 100644 --- a/README.md +++ b/README.md @@ -451,7 +451,7 @@ The TeleBot constructor takes the following optional arguments: As an alternative to the message handlers, one can also register a function as a listener to TeleBot. Example: ```python def handle_messages(messages): - for message in messsages: + for message in messages: # Do something with the message bot.reply_to(message, 'Hi')