From dc3acda4ed214e4553d8393f87cd4f8e3577c612 Mon Sep 17 00:00:00 2001 From: Alexandre Batisse Date: Tue, 14 Dec 2021 18:20:54 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=8F=20Fix=20typos=20in=20docs=20titles=20?= =?UTF-8?q?(#28)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/tutorial/fastapi/limit-and-offset.md | 2 +- docs/tutorial/fastapi/teams.md | 2 +- docs/tutorial/where.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/tutorial/fastapi/limit-and-offset.md b/docs/tutorial/fastapi/limit-and-offset.md index 6df18f4..57043ce 100644 --- a/docs/tutorial/fastapi/limit-and-offset.md +++ b/docs/tutorial/fastapi/limit-and-offset.md @@ -1,4 +1,4 @@ -# Read Heroes with Limit and Offset wtih FastAPI +# Read Heroes with Limit and Offset with FastAPI When a client sends a request to get all the heroes, we have been returning them all. diff --git a/docs/tutorial/fastapi/teams.md b/docs/tutorial/fastapi/teams.md index f0bce4c..9bc4af7 100644 --- a/docs/tutorial/fastapi/teams.md +++ b/docs/tutorial/fastapi/teams.md @@ -1,4 +1,4 @@ -# FastAPI Path Opeartions for Teams - Other Models +# FastAPI Path Operations for Teams - Other Models Let's now update the **FastAPI** application to handle data for teams. diff --git a/docs/tutorial/where.md b/docs/tutorial/where.md index 249ccd5..fd80712 100644 --- a/docs/tutorial/where.md +++ b/docs/tutorial/where.md @@ -204,7 +204,7 @@ We care specially about the **select** statement: -## Filter Rows Using `WHERE` wtih **SQLModel** +## Filter Rows Using `WHERE` with **SQLModel** Now, the same way that we add `WHERE` to a SQL statement to filter rows, we can add a `.where()` to a **SQLModel** `select()` statment to filter rows, which will filter the objects returned: