From c9af1c16619d7a9af17213bf122140668a892ded Mon Sep 17 00:00:00 2001 From: Alex Root Junior Date: Mon, 25 Jul 2022 00:55:41 +0300 Subject: [PATCH] Update examples/echo_bot.py Co-authored-by: Oleg A. --- examples/echo_bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/echo_bot.py b/examples/echo_bot.py index 2be3666d..9097c7ac 100644 --- a/examples/echo_bot.py +++ b/examples/echo_bot.py @@ -14,7 +14,7 @@ async def command_start_handler(message: Message) -> None: """ This handler receive messages with `/start` command """ - # Most event objects has an aliases for API methods to be called in event context + # Most event objects have aliases for API methods that can be called in events' context # For example if you want to answer to incoming message you can use `message.answer(...)` alias # and the target chat will be passed to :ref:`aiogram.methods.send_message.SendMessage` # method automatically or call API method directly via