From 5540d770e9f3aad24de819cabed6838358c3ca82 Mon Sep 17 00:00:00 2001 From: KuroAngel <145038102+KuroKoka551@users.noreply.github.com> Date: Fri, 17 May 2024 18:00:55 +0500 Subject: [PATCH] Fix typo --- examples/async_example.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/async_example.py b/examples/async_example.py index 0f8870b..fe927f9 100644 --- a/examples/async_example.py +++ b/examples/async_example.py @@ -45,11 +45,11 @@ async def delete_todo(self, id: int): @post("todos") async def create_todo(self, body: Todo) -> Todo: - """Созадем Todo""" + """Создаем Todo""" @get("https://httpbin.org/get") def get_httpbin(self) -> Any: - """Используемый другой base_url""" + """Используем другой base_url""" @post("https://httpbin.org/post") def upload_image(self, file: File):