diff options
author | Guillermo Iguaran <guilleiguaran@gmail.com> | 2013-12-21 10:56:29 -0800 |
---|---|---|
committer | Guillermo Iguaran <guilleiguaran@gmail.com> | 2013-12-21 10:56:29 -0800 |
commit | 82053bee366c68a0eb87386bbb62378d53a58174 (patch) | |
tree | 0dfa4400a7b4d1cad0057810827a393ef1b49b47 /activemodel | |
parent | b9c9766cd413f239ff892ea6b90abfd4a0bada46 (diff) | |
parent | b894b7b90a6aced0e78ab84a45bf1c75c871bb2d (diff) | |
download | rails-82053bee366c68a0eb87386bbb62378d53a58174.tar.gz rails-82053bee366c68a0eb87386bbb62378d53a58174.tar.bz2 rails-82053bee366c68a0eb87386bbb62378d53a58174.zip |
Merge pull request #13436 from robin850/patch-11
Add missing changelog entries and fix few typos
Diffstat (limited to 'activemodel')
-rw-r--r-- | activemodel/lib/active_model/callbacks.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activemodel/lib/active_model/callbacks.rb b/activemodel/lib/active_model/callbacks.rb index 377aa6ee27..b27a39b787 100644 --- a/activemodel/lib/active_model/callbacks.rb +++ b/activemodel/lib/active_model/callbacks.rb @@ -30,7 +30,7 @@ module ActiveModel # end # # Then in your class, you can use the +before_create+, +after_create+ and - # +around_create+ methods, just as you would in an Active Record module. + # +around_create+ methods, just as you would in an Active Record model. # # before_create :action_before_create # |