Skip to content

Commit 064241d

Browse files
authored
Merge branch 'main' into main
2 parents 07525cd + a5116a3 commit 064241d

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

docs/release-notes.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Latest Changes
44

5+
* ✏ Fix typos in `docs/tutorial/automatic-id-none-refresh.md`, `docs/tutorial/fastapi/update.md`, `docs/tutorial/select.md`. PR [#185](https://github.com/tiangolo/sqlmodel/pull/185) by [@rootux](https://github.com/rootux).
6+
* ✏ Fix typo in `docs/databases.md`. PR [#177](https://github.com/tiangolo/sqlmodel/pull/177) by [@seandlg](https://github.com/seandlg).
57
* ✏ Fix typos in `docs/tutorial/fastapi/update.md`. PR [#162](https://github.com/tiangolo/sqlmodel/pull/162) by [@wmcgee3](https://github.com/wmcgee3).
68
* ✏ Fix typos in `docs/tutorial/code-structure.md`, `docs/tutorial/fastapi/multiple-models.md`, `docs/tutorial/fastapi/simple-hero-api.md`, `docs/tutorial/many-to-many/index.md`. PR [#116](https://github.com/tiangolo/sqlmodel/pull/116) by [@moonso](https://github.com/moonso).
79
* ✏ Fix typo in `docs/tutorial/fastapi/teams.md`. PR [#154](https://github.com/tiangolo/sqlmodel/pull/154) by [@chrisgoddard](https://github.com/chrisgoddard).

docs/tutorial/fastapi/update.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Now let's see how to update data in the database with a **FastAPI** *path operat
44

55
## `HeroUpdate` Model
66

7-
We want clients to be able to udpate the `name`, the `secret_name`, and the `age` of a hero.
7+
We want clients to be able to update the `name`, the `secret_name`, and the `age` of a hero.
88

99
But we don't want them to have to include all the data again just to **update a single field**.
1010

docs/tutorial/select.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ You can try that out in **DB Browser for SQLite**:
8888

8989
### A SQL Shortcut
9090

91-
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 `*`:
91+
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 `*`:
9292

9393
```SQL
9494
SELECT *

0 commit comments

Comments
 (0)