diff options
author | Carlos Antonio da Silva <carlosantoniodasilva@gmail.com> | 2013-06-10 05:01:14 -0700 |
---|---|---|
committer | Carlos Antonio da Silva <carlosantoniodasilva@gmail.com> | 2013-06-10 05:01:14 -0700 |
commit | ebf2113a0565d2e38802f29291b3971b2c7f7922 (patch) | |
tree | b7b36fdfff16589f26cb6e31ed667e7161982453 /activesupport/lib/active_support/callbacks.rb | |
parent | 0c0a64c8282d2ba26584bcf4d58fc23049ce9318 (diff) | |
parent | 442c52e8150e2445e7a1654fd5ac0845bdbd6e4c (diff) | |
download | rails-ebf2113a0565d2e38802f29291b3971b2c7f7922.tar.gz rails-ebf2113a0565d2e38802f29291b3971b2c7f7922.tar.bz2 rails-ebf2113a0565d2e38802f29291b3971b2c7f7922.zip |
Merge pull request #10897 from prathamesh-sonpatki/active-support-typos
Fixed typos in activesupport [ci skip]
Diffstat (limited to 'activesupport/lib/active_support/callbacks.rb')
-rw-r--r-- | activesupport/lib/active_support/callbacks.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/activesupport/lib/active_support/callbacks.rb b/activesupport/lib/active_support/callbacks.rb index 85b7669353..0cfbed5588 100644 --- a/activesupport/lib/active_support/callbacks.rb +++ b/activesupport/lib/active_support/callbacks.rb @@ -403,8 +403,8 @@ module ActiveSupport # the same after this point: # # Symbols:: Already methods. - # Strings:: class_eval'ed into methods. - # Procs:: define_method'ed into methods. + # Strings:: class_eval'd into methods. + # Procs:: using define_method compiled into methods. # Objects:: # a method is created that calls the before_foo method # on the object. @@ -648,7 +648,7 @@ module ActiveSupport # # * <tt>:terminator</tt> - Determines when a before filter will halt the # callback chain, preventing following callbacks from being called and - # the event from being triggered. This is a string to be eval'ed. The + # the event from being triggered. This is a string to be eval'd. The # result of the callback is available in the +result+ variable. # # define_callbacks :validate, terminator: 'result == false' |