aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/lib
diff options
context:
space:
mode:
authorNeeraj Singh <neerajdotname@gmail.com>2010-07-18 18:02:40 -0400
committerNeeraj Singh <neerajdotname@gmail.com>2010-07-18 18:02:40 -0400
commitd1037a473b2099b0a96a0b2aad26f33747da49f8 (patch)
tree34cee6ac5bf353fbfd3726f56856d174633aaced /activemodel/lib
parent631b9564d284d1cbcfabeea272df4b853834fe9d (diff)
downloadrails-d1037a473b2099b0a96a0b2aad26f33747da49f8.tar.gz
rails-d1037a473b2099b0a96a0b2aad26f33747da49f8.tar.bz2
rails-d1037a473b2099b0a96a0b2aad26f33747da49f8.zip
replacing around with for in the comments for callbacks
Diffstat (limited to 'activemodel/lib')
-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 e7aad17021..8c10c54b54 100644
--- a/activemodel/lib/active_model/callbacks.rb
+++ b/activemodel/lib/active_model/callbacks.rb
@@ -19,7 +19,7 @@ module ActiveModel
#
# define_model_callbacks :create, :update
#
- # This will provide all three standard callbacks (before, around and after) around
+ # This will provide all three standard callbacks (before, around and after) for
# both the :create and :update methods. To implement, you need to wrap the methods
# you want callbacks on in a block so that the callbacks get a chance to fire:
#