From 79c59b34f9141427d221842662dcef2eb90a558f Mon Sep 17 00:00:00 2001 From: Oleg A Date: Sat, 27 Mar 2021 15:09:08 +0300 Subject: [PATCH] Fixed example description (#545) --- examples/text_filter_example.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/text_filter_example.py b/examples/text_filter_example.py index 60d631e3..7a90d6f0 100644 --- a/examples/text_filter_example.py +++ b/examples/text_filter_example.py @@ -18,7 +18,7 @@ bot = Bot(token=API_TOKEN) dp = Dispatcher(bot) -# if the text from user in the list +# if the text is equal to any string in the list @dp.message_handler(text=['text1', 'text2']) async def text_in_handler(message: types.Message): await message.answer("The message text equals to one of in the list!")