From: Yaqueline Hoyos Date: Tue, 14 Dec 2021 18:25:06 +0000 (-0500) Subject: ✏ Fix typo in FastAPI tutorial (#192) X-Git-Tag: 0.0.6~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=410d7af6b654b9c42a0905c0ff7b0c60f0610bfe;p=thirdparty%2Ffastapi%2Fsqlmodel.git ✏ Fix typo in FastAPI tutorial (#192) --- diff --git a/docs/tutorial/fastapi/simple-hero-api.md b/docs/tutorial/fastapi/simple-hero-api.md index 8759bce2..8676136a 100644 --- a/docs/tutorial/fastapi/simple-hero-api.md +++ b/docs/tutorial/fastapi/simple-hero-api.md @@ -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.