]> git.ipfire.org Git - thirdparty/fastapi/sqlmodel.git/commitdiff
✏ Fix typos in docs titles (#28)
authorAlexandre Batisse <alexandre.batisse@hey.com>
Tue, 14 Dec 2021 17:20:54 +0000 (18:20 +0100)
committerGitHub <noreply@github.com>
Tue, 14 Dec 2021 17:20:54 +0000 (18:20 +0100)
docs/tutorial/fastapi/limit-and-offset.md
docs/tutorial/fastapi/teams.md
docs/tutorial/where.md

index 6df18f429a81cad0919ba0c29fe4aba23d298b78..57043ceaf788f129963f42e20aa02e886092ff5d 100644 (file)
@@ -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.
 
index f0bce4c839d42510e2343afd923370f2e33ee582..9bc4af78cfffe7e75447e0d382a801e07c70d1eb 100644 (file)
@@ -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.
 
index 249ccd530c19961cb30be1482a904828203f80f3..fd807127cc54f3fdcefc36c3268f337a1a10c5db 100644 (file)
@@ -204,7 +204,7 @@ We care specially about the **select** statement:
 
 </details>
 
-## 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: