aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/associations.rb
diff options
context:
space:
mode:
authorKasper Timm Hansen <kaspth@gmail.com>2016-12-31 17:23:16 +0100
committerKasper Timm Hansen <kaspth@gmail.com>2016-12-31 17:23:16 +0100
commit2403b4a03f23a20f9022e66a150ea9784e6d7dce (patch)
tree3e1910ca727bdc2cd9d4b1ee7f004a5ba9e83e44 /activerecord/lib/active_record/associations.rb
parent2afe5a1d8e2bde7e0309114c2dec99213baab036 (diff)
downloadrails-2403b4a03f23a20f9022e66a150ea9784e6d7dce.tar.gz
rails-2403b4a03f23a20f9022e66a150ea9784e6d7dce.tar.bz2
rails-2403b4a03f23a20f9022e66a150ea9784e6d7dce.zip
[ci skip] Remove mention of GeneratedAssociationMethods
Marked as private in 2afe5a1 and doesn't seem worth it to mention the module name here.
Diffstat (limited to 'activerecord/lib/active_record/associations.rb')
-rw-r--r--activerecord/lib/active_record/associations.rb7
1 files changed, 3 insertions, 4 deletions
diff --git a/activerecord/lib/active_record/associations.rb b/activerecord/lib/active_record/associations.rb
index d97d4c7ed0..fb6b41415e 100644
--- a/activerecord/lib/active_record/associations.rb
+++ b/activerecord/lib/active_record/associations.rb
@@ -382,10 +382,9 @@ module ActiveRecord
# end
# end
#
- # If your model class is <tt>Project</tt>, then the module is
- # named <tt>Project::GeneratedAssociationMethods</tt>. The +GeneratedAssociationMethods+ module is
- # included in the model class immediately after the (anonymous) generated attributes methods
- # module, meaning an association will override the methods for an attribute with the same name.
+ # The association methods module is included immediately after the
+ # generated attributes methods module, meaning an association will
+ # override the methods for an attribute with the same name.
#
# == Cardinality and associations
#