diff options
author | Rob Looby <robertjlooby@gmail.com> | 2015-05-08 13:55:20 -0500 |
---|---|---|
committer | Rob Looby <robertjlooby@gmail.com> | 2015-05-08 13:55:20 -0500 |
commit | 6dab0b28c7e19ddcca8aacaf56763e221c2cdebe (patch) | |
tree | 3a551ff2359e0d08db002fa1c8bc99bbbc163ded | |
parent | fca8a7a7ba4047d3843219f9403c059f40fe0de2 (diff) | |
download | rails-6dab0b28c7e19ddcca8aacaf56763e221c2cdebe.tar.gz rails-6dab0b28c7e19ddcca8aacaf56763e221c2cdebe.tar.bz2 rails-6dab0b28c7e19ddcca8aacaf56763e221c2cdebe.zip |
change GeneratedFeatureMethods to GeneratedAssociationMethods in docs
the module name was changed in 8e814a0ac0768816974d2bfd68d33d931592751e
-rw-r--r-- | activerecord/lib/active_record/associations.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/associations.rb b/activerecord/lib/active_record/associations.rb index c5c2178ee2..7deb15b047 100644 --- a/activerecord/lib/active_record/associations.rb +++ b/activerecord/lib/active_record/associations.rb @@ -285,7 +285,7 @@ module ActiveRecord # end # # If your model class is <tt>Project</tt>, the module is - # named <tt>Project::GeneratedFeatureMethods</tt>. The GeneratedFeatureMethods 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. # |