]> git.ipfire.org Git - thirdparty/fastapi/sqlmodel.git/commitdiff
✏ Fix typo in `docs/tutorial/relationship-attributes/define-relationships-attributes...
authorJorge Alvarado <alvaradosegurajorge@gmail.com>
Sat, 27 Aug 2022 21:31:38 +0000 (17:31 -0400)
committerGitHub <noreply@github.com>
Sat, 27 Aug 2022 21:31:38 +0000 (23:31 +0200)
Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
docs/tutorial/relationship-attributes/define-relationships-attributes.md

index 09d7b2765bd259eddf10d26e1c5fd41085fdff56..0531ec53e57863d2fbc2a481893dc4659d53d329 100644 (file)
@@ -96,7 +96,7 @@ Next, use that `Relationship` to declare a new attribute in the model classes:
 
 ## What Are These Relationship Attributes
 
-This new attributes are not the same as fields, they **don't represent a column** directly in the database, and their value is not a singular value like an integer. Their value is the actual **entire object** that is related.
+These new attributes are not the same as fields, they **don't represent a column** directly in the database, and their value is not a singular value like an integer. Their value is the actual **entire object** that is related.
 
 So, in the case of a `Hero` instance, if you call `hero.team`, you will get the entire `Team` instance object that this hero belongs to. ✨