From 1e8fff8de073dde75d161e4c144d7d173c1d7029 Mon Sep 17 00:00:00 2001 From: Aryeh Harris Date: Mon, 23 Dec 2019 13:42:07 -0500 Subject: [PATCH] Update ThroughAssociations.md --- concepts/ORM/Associations/ThroughAssociations.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/concepts/ORM/Associations/ThroughAssociations.md b/concepts/ORM/Associations/ThroughAssociations.md index 8a5979617..b5021da9a 100644 --- a/concepts/ORM/Associations/ThroughAssociations.md +++ b/concepts/ORM/Associations/ThroughAssociations.md @@ -4,7 +4,7 @@ ### Overview -Many-to-many through associations behave in the same way as many-to-many associations, except that in a many-to-many through association, the join table is created automatically. In a many-to-many through assocation, you define a model containing two fields that correspond to the two models you will be joining together. When defining an association, you will add the `through` key to show that the model should be used instead of the automatic join table. +Many-to-many through associations behave in the same way as many-to-many associations, except that in a many-to-many association, the join table is created automatically. In a many-to-many through assocation, you define a model containing two fields that correspond to the two models you will be joining together. When defining an association, you will add the `through` key to show that the model should be used instead of the automatic join table. ### Has many through example