]> git.ipfire.org Git - thirdparty/fastapi/sqlmodel.git/commitdiff
✏ Fix typo in FastAPI tutorial (#192)
authorYaqueline Hoyos <yaqueline.hoyos@udea.edu.co>
Tue, 14 Dec 2021 18:25:06 +0000 (13:25 -0500)
committerGitHub <noreply@github.com>
Tue, 14 Dec 2021 18:25:06 +0000 (19:25 +0100)
docs/tutorial/fastapi/simple-hero-api.md

index 8759bce2c253975d5e85fcc62f6adc87d0b6ab1d..8676136a46833ae917901cb385ad973f8783883d 100644 (file)
@@ -152,7 +152,7 @@ It will be called when a user sends a request with a `POST` **operation** to the
 
 ## The **SQLModel** Advantage
 
-Here's where having our **SQLModel** class models be both **SQLAlchemy** models and **Pydantic** models at the same tieme shine. ✨
+Here's where having our **SQLModel** class models be both **SQLAlchemy** models and **Pydantic** models at the same time shine. ✨
 
 Here we use the **same** class model to define the **request body** that will be received by our API.