✏ Fix typo in FastAPI tutorial (#192)

This commit is contained in:
Yaqueline Hoyos 2021-12-14 13:25:06 -05:00 committed by GitHub
parent 1b99c3148f
commit 410d7af6b6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View 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.