From 1209281787c1073b24e48db8b526e565b3201c7b Mon Sep 17 00:00:00 2001 From: zora89 <42845567+zora89@users.noreply.github.com> Date: Wed, 26 May 2021 02:17:49 +0530 Subject: [PATCH] type corrected. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e23d36b..df11c64 100644 --- a/README.md +++ b/README.md @@ -146,7 +146,7 @@ Outlined below are some general use cases of the API. #### Message handlers A message handler is a function that is decorated with the `message_handler` decorator of a TeleBot instance. Message handlers consist of one or multiple filters. -Each filter much return True for a certain message in order for a message handler to become eligible to handle that message. A message handler is declared in the following way (provided `bot` is an instance of TeleBot): +Each filter must return True for a certain message in order for a message handler to become eligible to handle that message. A message handler is declared in the following way (provided `bot` is an instance of TeleBot): ```python @bot.message_handler(filters) def function_name(message):