]> git.ipfire.org Git - thirdparty/fastapi/sqlmodel.git/commitdiff
✏ Fix typos in `docs/tutorial/fastapi/update.md` (#268)
authorcirrusj <cirrusj@users.noreply.github.com>
Sat, 27 Aug 2022 21:00:09 +0000 (00:00 +0300)
committerGitHub <noreply@github.com>
Sat, 27 Aug 2022 21:00:09 +0000 (23:00 +0200)
Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
docs/tutorial/fastapi/update.md

index e08f169bee2d85dbf6837b3123732440515dfecd..b845d5a22c4a066f3bc915d1dc948d08c556c00e 100644 (file)
@@ -218,11 +218,11 @@ And when getting the data with `hero.dict(exclude_unset=True)`, we would get:
 }
 ```
 
-So, we would use that value and upate the `age` to `None` in the database, **just as the client intended**.
+So, we would use that value and update the `age` to `None` in the database, **just as the client intended**.
 
 Notice that `age` here is `None`, and **we still detected it**.
 
-Also that `name` was not even sent, and we don't *accidentally* set it to `None` or something, we just didn't touch it, because the client didn't send it, so we are **perfectly fine**, even in these corner cases. ✨
+Also that `name` was not even sent, and we don't *accidentally* set it to `None` or something, we just didn't touch it, because the client didn't sent it, so we are **perfectly fine**, even in these corner cases. ✨
 
 These are some of the advantages of Pydantic, that we can use with SQLModel. 🎉