From 366a50998079b29c02b5e7568c27c215322477c3 Mon Sep 17 00:00:00 2001 From: Pastukhov Nikita Date: Fri, 4 Aug 2023 20:30:40 +0300 Subject: [PATCH] docs: fix typo --- docs/docs/en/integrations/2_fastapi-plugin.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/en/integrations/2_fastapi-plugin.md b/docs/docs/en/integrations/2_fastapi-plugin.md index d9d84a6b..adb76249 100644 --- a/docs/docs/en/integrations/2_fastapi-plugin.md +++ b/docs/docs/en/integrations/2_fastapi-plugin.md @@ -24,7 +24,7 @@ use it to declare any `get`, `post`, `put` and other HTTP methods. For example, !!! warning If your **ASGI** server does not support installing **state** inside **lifespan**, you can disable this behavior as follows: ```python - router = Propane Router(..., setup_state=False) + router = PropanRouter(..., setup_state=False) ``` However, after that you will not be able to access the broker from your application's **state** (but it is still available as the `router.broker`)