]> git.ipfire.org Git - thirdparty/fastapi/sqlmodel.git/commitdiff
✏ Fix typos in `docs/tutorial/automatic-id-none-refresh.md`, `docs/tutorial/fastapi...
authorGal Bracha <galbra@gmail.com>
Sat, 27 Aug 2022 20:53:34 +0000 (23:53 +0300)
committerGitHub <noreply@github.com>
Sat, 27 Aug 2022 20:53:34 +0000 (20:53 +0000)
Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
docs/tutorial/fastapi/update.md
docs/tutorial/select.md

index 5620d3f230771533899c21f86f10effe9ce3fc8c..e08f169bee2d85dbf6837b3123732440515dfecd 100644 (file)
@@ -4,7 +4,7 @@ Now let's see how to update data in the database with a **FastAPI** *path operat
 
 ## `HeroUpdate` Model
 
-We want clients to be able to udpate the `name`, the `secret_name`, and the `age` of a hero.
+We want clients to be able to update the `name`, the `secret_name`, and the `age` of a hero.
 
 But we don't want them to have to include all the data again just to **update a single field**.
 
index b5a092224fc4b17ce30220bd5f55decc10a4bdbb..fb638c12128cd02a0335ab759116a2007b2d2c41 100644 (file)
@@ -88,7 +88,7 @@ You can try that out in **DB Browser for SQLite**:
 
 ### A SQL Shortcut
 
-If we want to get all the columns like in this case above, in SQL there's a shortcut, instead of specifying each of the column names wew could write a `*`:
+If we want to get all the columns like in this case above, in SQL there's a shortcut, instead of specifying each of the column names we could write a `*`:
 
 ```SQL
 SELECT *