aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorHendy Tanata <htanata@gmail.com>2014-11-26 09:16:44 -0800
committerHendy Tanata <htanata@gmail.com>2014-11-26 09:17:27 -0800
commitbd9ffa7e1fb433f359ee096a2afd924a652d1912 (patch)
tree17b499cc719b3933ead4c939286d9e8d206123fb /activerecord
parent9109365ab9e07a893b68c7d208591a083871a4e8 (diff)
downloadrails-bd9ffa7e1fb433f359ee096a2afd924a652d1912.tar.gz
rails-bd9ffa7e1fb433f359ee096a2afd924a652d1912.tar.bz2
rails-bd9ffa7e1fb433f359ee096a2afd924a652d1912.zip
Fix grammar on ActiveRecord::AttributeMethods doc.
[ci skip]
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/lib/active_record/attribute_methods.rb2
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