Update base.rst (#1340)

* Update base.rst

Typo correction

* Create 1340.doc.rst
This commit is contained in:
VasBrd 2023-10-18 22:00:25 +03:00 committed by GitHub
parent cf3044687a
commit 98771fdf31
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 4 deletions

1
CHANGES/1340.doc.rst Normal file
View file

@ -0,0 +1 @@
Minor typo correction, specifically in module naming + some grammar.

View file

@ -6,15 +6,15 @@ BaseHandler
Base handler is generic abstract class and should be used in all other class-based handlers.
Import: :code:`from aiogram.handler import BaseHandler`
Import: :code:`from aiogram.handlers import BaseHandler`
By default you will need to override only method :code:`async def handle(self) -> Any: ...`
This class is also have an default initializer and you don't need to change it.
Initializer accepts current event and all contextual data and which
This class also has a default initializer and you don't need to change it.
The initializer accepts the incoming event and all contextual data, which
can be accessed from the handler through attributes: :code:`event: TelegramEvent` and :code:`data: Dict[Any, str]`
If instance of the bot is specified in context data or current context it can be accessed through *bot* class attribute.
If an instance of the bot is specified in context data or current context it can be accessed through *bot* class attribute.
Example
=======