diff options
author | Xavier Noria <fxn@hashref.com> | 2011-04-12 22:45:33 +0200 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2011-04-12 22:45:33 +0200 |
commit | 3366479a9a6db3101ffe3827a86be0e5b50f7a5a (patch) | |
tree | a9b4e813f32a99fa626152947862bb57edd23ed0 /activemodel | |
parent | b53ffb35e085362bb2690577ae123a1f4872c12a (diff) | |
parent | 40d156955c82c19b14494c1bf60ad48980e29a4e (diff) | |
download | rails-3366479a9a6db3101ffe3827a86be0e5b50f7a5a.tar.gz rails-3366479a9a6db3101ffe3827a86be0e5b50f7a5a.tar.bz2 rails-3366479a9a6db3101ffe3827a86be0e5b50f7a5a.zip |
Merge branch 'master' of git://github.com/lifo/docrails
Diffstat (limited to 'activemodel')
-rw-r--r-- | activemodel/lib/active_model/dirty.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activemodel/lib/active_model/dirty.rb b/activemodel/lib/active_model/dirty.rb index a479795d51..5ede78617a 100644 --- a/activemodel/lib/active_model/dirty.rb +++ b/activemodel/lib/active_model/dirty.rb @@ -8,7 +8,7 @@ module ActiveModel # Provides a way to track changes in your object in the same way as # Active Record does. # - # The requirements to implement ActiveModel::Dirty are to: + # The requirements for implementing ActiveModel::Dirty are: # # * <tt>include ActiveModel::Dirty</tt> in your object # * Call <tt>define_attribute_methods</tt> passing each method you want to |