]> git.ipfire.org Git - thirdparty/fastapi/sqlmodel.git/commitdiff
✏️ Fix typo in `docs/tutorial/relationship-attributes/index.md` (#880)
authorMieszko Bańczerowski <mieszkoziemowit@gmail.com>
Tue, 4 Jun 2024 23:58:27 +0000 (01:58 +0200)
committerGitHub <noreply@github.com>
Tue, 4 Jun 2024 23:58:27 +0000 (18:58 -0500)
docs/tutorial/relationship-attributes/index.md

index b32fb637df1f5a78608c55913c2c3d9cd95fb8f6..f63b2669e3e32478dc3ffc4d27987e4c38aeb7d9 100644 (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