From 0bf578e3fbfe33f495fcf49ca2d59b70f25f5c0b Mon Sep 17 00:00:00 2001 From: Daniil Date: Tue, 11 Oct 2022 19:23:47 +0300 Subject: [PATCH] Update router.rst 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 -------------------