diff options
author | Tim Wade <hello@timjwade.com> | 2015-04-24 08:32:58 -0400 |
---|---|---|
committer | Tim Wade <hello@timjwade.com> | 2015-04-24 08:32:58 -0400 |
commit | 875f67528481a3b9bb2be891d9d44eaa741b6f2f (patch) | |
tree | 26afd27d46e4b50e0844c41dbbc49e6245f8616d /activemodel/lib | |
parent | 55d9e494e896e7b041dc7c18df197d53690642b5 (diff) | |
download | rails-875f67528481a3b9bb2be891d9d44eaa741b6f2f.tar.gz rails-875f67528481a3b9bb2be891d9d44eaa741b6f2f.tar.bz2 rails-875f67528481a3b9bb2be891d9d44eaa741b6f2f.zip |
Fix grammar/style: pluralize 'each of its method'
[ci skip]
Diffstat (limited to 'activemodel/lib')
-rw-r--r-- | activemodel/lib/active_model/attribute_methods.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activemodel/lib/active_model/attribute_methods.rb b/activemodel/lib/active_model/attribute_methods.rb index 96be551264..83b073f0e4 100644 --- a/activemodel/lib/active_model/attribute_methods.rb +++ b/activemodel/lib/active_model/attribute_methods.rb @@ -23,7 +23,7 @@ module ActiveModel # The requirements to implement <tt>ActiveModel::AttributeMethods</tt> are to: # # * <tt>include ActiveModel::AttributeMethods</tt> in your class. - # * Call each of its method you want to add, such as +attribute_method_suffix+ + # * Call each of its methods you want to add, such as +attribute_method_suffix+ # or +attribute_method_prefix+. # * Call +define_attribute_methods+ after the other methods are called. # * Define the various generic +_attribute+ methods that you have declared. |