✏️ Fix typo in docs/tutorial/relationship-attributes/index.md (#880)

This commit is contained in:
Mieszko Bańczerowski 2024-06-05 01:58:27 +02:00 committed by GitHub
parent 6e7e553963
commit 24e76c7a13
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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