diff --git a/docs/en/docs/async.md b/docs/en/docs/async.md index 7c3dcfde..07afd7bd 100644 --- a/docs/en/docs/async.md +++ b/docs/en/docs/async.md @@ -210,7 +210,7 @@ Most of the existing popular Python frameworks (including Flask and Django) were Even though the main specification for asynchronous web Python (ASGI) was developed at Django, to add support for WebSockets. -That kind of asynchronicity is what made NodeJS popular (even though NodeJS is not parallel) and that's the strength of Go as a programing language. +That kind of asynchronicity is what made NodeJS popular (even though NodeJS is not parallel) and that's the strength of Go as a programming language. And that's the same level of performance you get with **FastAPI**. diff --git a/tests/test_multipart_installation.py b/tests/test_multipart_installation.py index c134332d..c8a6fd94 100644 --- a/tests/test_multipart_installation.py +++ b/tests/test_multipart_installation.py @@ -42,7 +42,7 @@ def test_incorrect_multipart_installed_multi_form(monkeypatch): app = FastAPI() @app.post("/") - async def root(username: str = Form(...), pasword: str = Form(...)): + async def root(username: str = Form(...), password: str = Form(...)): return username # pragma: nocover