From: wmcgee3 <61711986+wmcgee3@users.noreply.github.com> Date: Sat, 27 Aug 2022 20:51:46 +0000 (-0400) Subject: ✏ Fix typos in `docs/tutorial/fastapi/update.md` (#162) X-Git-Tag: 0.0.7~55 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aa5803fbbb40d2d1ab7d1fbf451453134421d4e9;p=thirdparty%2Ffastapi%2Fsqlmodel.git ✏ Fix typos in `docs/tutorial/fastapi/update.md` (#162) Co-authored-by: pwildenhain <35195136+pwildenhain@users.noreply.github.com> Co-authored-by: Sebastián Ramírez --- diff --git a/docs/tutorial/fastapi/update.md b/docs/tutorial/fastapi/update.md index b32e5828..5620d3f2 100644 --- a/docs/tutorial/fastapi/update.md +++ b/docs/tutorial/fastapi/update.md @@ -222,7 +222,7 @@ So, we would use that value and upate the `age` to `None` in the database, **jus Notice that `age` here is `None`, and **we still detected it**. -Also that `name` was not even sent, and we don't *accidentaly* set it to `None` or something, we just didn't touch it, because the client didn't sent it, so we are **pefectly 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 send 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. 🎉