diff options
author | Yves Senn <yves.senn@gmail.com> | 2015-09-24 08:29:04 +0200 |
---|---|---|
committer | Yves Senn <yves.senn@gmail.com> | 2015-09-24 08:29:04 +0200 |
commit | c5481d8af3ee8ab32489799362c9e86b6efac099 (patch) | |
tree | 741aae0dfcd7eee40530e833a280c65ef7fc147c | |
parent | 311d96b9e46c316f9a8bd7223faf8a658eba82df (diff) | |
parent | 2629d61ad8c12c5f0249fae9d7e84dd80a8ab2b8 (diff) | |
download | rails-c5481d8af3ee8ab32489799362c9e86b6efac099.tar.gz rails-c5481d8af3ee8ab32489799362c9e86b6efac099.tar.bz2 rails-c5481d8af3ee8ab32489799362c9e86b6efac099.zip |
Merge pull request #21744 from amitsuroliya/doc_changes
Fix ActiveRecord `instance_method_already_implemented` docs [ci skip]
-rw-r--r-- | activerecord/lib/active_record/attribute_methods.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/attribute_methods.rb b/activerecord/lib/active_record/attribute_methods.rb index 82b07de482..99b500526d 100644 --- a/activerecord/lib/active_record/attribute_methods.rb +++ b/activerecord/lib/active_record/attribute_methods.rb @@ -96,7 +96,7 @@ module ActiveRecord end end - # Raises a <tt>ActiveRecord::DangerousAttributeError</tt> exception when an + # Raises an <tt>ActiveRecord::DangerousAttributeError</tt> exception when an # \Active \Record method is defined in the model, otherwise +false+. # # class Person < ActiveRecord::Base |