From: Mieszko Bańczerowski Date: Tue, 4 Jun 2024 23:58:27 +0000 (+0200) Subject: ✏️ Fix typo in `docs/tutorial/relationship-attributes/index.md` (#880) X-Git-Tag: 0.0.20~15 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=24e76c7a1386e00a9aafa155fa58e310c56ef560;p=thirdparty%2Ffastapi%2Fsqlmodel.git ✏️ Fix typo in `docs/tutorial/relationship-attributes/index.md` (#880) --- diff --git a/docs/tutorial/relationship-attributes/index.md b/docs/tutorial/relationship-attributes/index.md index b32fb637..f63b2669 100644 --- a/docs/tutorial/relationship-attributes/index.md +++ b/docs/tutorial/relationship-attributes/index.md @@ -4,7 +4,7 @@ In the previous chapters we discussed how to manage databases with tables that h And then we read the data together with `select()` and using `.where()` or `.join()` to connect it. -Now we will see how to use **Relationship Attributes**, an extra feature of **SQLModel** (and SQLAlchemy) to work with the data in the database in way much more familiar way, and closer to normal Python code. +Now we will see how to use **Relationship Attributes**, an extra feature of **SQLModel** (and SQLAlchemy), to work with the data in the database in a much more familiar way, and closer to normal Python code. /// info