diff options
author | Sebastian Gassner <sebastian.gassner@gmail.com> | 2011-07-20 10:31:57 +0200 |
---|---|---|
committer | Sebastian Gassner <sebastian.gassner@gmail.com> | 2011-07-20 10:31:57 +0200 |
commit | 9714d866f51b46ac398f52cb96e47e597a4b68a5 (patch) | |
tree | 1fb88c5b24f2379ae66e2a29e55c2007cbb04d52 /activemodel/lib | |
parent | 01c2a989f1dcd717e683b89ef99b03511cc55c46 (diff) | |
download | rails-9714d866f51b46ac398f52cb96e47e597a4b68a5.tar.gz rails-9714d866f51b46ac398f52cb96e47e597a4b68a5.tar.bz2 rails-9714d866f51b46ac398f52cb96e47e597a4b68a5.zip |
Documentation fix: adding missing equal sign in code sample for ActiveModel::Dirty.
Diffstat (limited to 'activemodel/lib')
-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 166cccf161..e3e71525fa 100644 --- a/activemodel/lib/active_model/dirty.rb +++ b/activemodel/lib/active_model/dirty.rb @@ -29,7 +29,7 @@ module ActiveModel # # include ActiveModel::Dirty # - # define_attribute_methods [:name] + # define_attribute_methods = [:name] # # def name # @name |