diff options
author | Aditya Sanghi <asanghi@me.com> | 2010-11-27 19:56:08 +0530 |
---|---|---|
committer | Aditya Sanghi <asanghi@me.com> | 2010-11-27 19:56:08 +0530 |
commit | 04922bafda9456ca9b6b8c59f231c402cb7952b7 (patch) | |
tree | 52448b0891b13ed97ea8730669a47ea4919cf628 /activemodel | |
parent | f28916194cc19759dd6b1ce4f22ef59b49f0c8f8 (diff) | |
download | rails-04922bafda9456ca9b6b8c59f231c402cb7952b7.tar.gz rails-04922bafda9456ca9b6b8c59f231c402cb7952b7.tar.bz2 rails-04922bafda9456ca9b6b8c59f231c402cb7952b7.zip |
grammar fix
Diffstat (limited to 'activemodel')
-rw-r--r-- | activemodel/lib/active_model/attribute_methods.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activemodel/lib/active_model/attribute_methods.rb b/activemodel/lib/active_model/attribute_methods.rb index c1c5640616..fc5f5c4c66 100644 --- a/activemodel/lib/active_model/attribute_methods.rb +++ b/activemodel/lib/active_model/attribute_methods.rb @@ -46,8 +46,8 @@ module ActiveModel # end # end # - # Notice that whenever you include ActiveModel::AttributeMethods in your class, - # it requires you to implement a <tt>attributes</tt> methods which returns a hash + # Note that whenever you include ActiveModel::AttributeMethods in your class, + # it requires you to implement an <tt>attributes</tt> method which returns a hash # with each attribute name in your model as hash key and the attribute value as # hash value. # |