aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel
diff options
context:
space:
mode:
authorGuillermo Iguaran <guilleiguaran@gmail.com>2013-12-21 10:56:29 -0800
committerGuillermo Iguaran <guilleiguaran@gmail.com>2013-12-21 10:56:29 -0800
commit82053bee366c68a0eb87386bbb62378d53a58174 (patch)
tree0dfa4400a7b4d1cad0057810827a393ef1b49b47 /activemodel
parentb9c9766cd413f239ff892ea6b90abfd4a0bada46 (diff)
parentb894b7b90a6aced0e78ab84a45bf1c75c871bb2d (diff)
downloadrails-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.rb2
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
#