From 7a618b41f9db768e0111c711b1d29c266a9e5c8a Mon Sep 17 00:00:00 2001 From: Daniil Date: Tue, 11 Oct 2022 20:04:28 +0300 Subject: [PATCH] Update router.rst (#1023) Fix typo error in docs --- docs/dispatcher/router.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/dispatcher/router.rst b/docs/dispatcher/router.rst index 617c1f89..40d91769 100644 --- a/docs/dispatcher/router.rst +++ b/docs/dispatcher/router.rst @@ -85,7 +85,7 @@ Inline query .. code-block:: python @router.inline_query() - async def inline_query_handler(inline_query: types.Message) -> Any: pass + async def inline_query_handler(inline_query: types.InlineQuery) -> Any: pass Chosen inline query -------------------