diff options
author | Hendy Tanata <htanata@gmail.com> | 2014-11-26 09:16:44 -0800 |
---|---|---|
committer | Hendy Tanata <htanata@gmail.com> | 2014-11-26 09:17:27 -0800 |
commit | bd9ffa7e1fb433f359ee096a2afd924a652d1912 (patch) | |
tree | 17b499cc719b3933ead4c939286d9e8d206123fb | |
parent | 9109365ab9e07a893b68c7d208591a083871a4e8 (diff) | |
download | rails-bd9ffa7e1fb433f359ee096a2afd924a652d1912.tar.gz rails-bd9ffa7e1fb433f359ee096a2afd924a652d1912.tar.bz2 rails-bd9ffa7e1fb433f359ee096a2afd924a652d1912.zip |
Fix grammar on ActiveRecord::AttributeMethods doc.
[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 34ec397aee..21ddbbcb66 100644 --- a/activerecord/lib/active_record/attribute_methods.rb +++ b/activerecord/lib/active_record/attribute_methods.rb @@ -218,7 +218,7 @@ module ActiveRecord # A Person object with a name attribute can ask <tt>person.respond_to?(:name)</tt>, # <tt>person.respond_to?(:name=)</tt>, and <tt>person.respond_to?(:name?)</tt> - # which will all return +true+. It also define the attribute methods if they have + # which will all return +true+. It also defines the attribute methods if they have # not been generated. # # class Person < ActiveRecord::Base |