diff options
author | Vipul A M <vipulnsward@gmail.com> | 2015-01-31 11:56:38 +0530 |
---|---|---|
committer | Vipul A M <vipulnsward@gmail.com> | 2015-01-31 11:56:38 +0530 |
commit | 64f1c888f288a71c01f17f31257bcf77c7b97e5d (patch) | |
tree | 9b3933b7640618979298031bc3c73d3396f1266b /activesupport | |
parent | fa3108a9ef2baeed5a09642e16f75a5d9b2b2dc7 (diff) | |
download | rails-64f1c888f288a71c01f17f31257bcf77c7b97e5d.tar.gz rails-64f1c888f288a71c01f17f31257bcf77c7b97e5d.tar.bz2 rails-64f1c888f288a71c01f17f31257bcf77c7b97e5d.zip |
Wording fixes for `:skip_after_callbacks_if_terminated` callbacks option
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/callbacks.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/callbacks.rb b/activesupport/lib/active_support/callbacks.rb index 0f1de8b076..7559e6dce8 100644 --- a/activesupport/lib/active_support/callbacks.rb +++ b/activesupport/lib/active_support/callbacks.rb @@ -746,8 +746,8 @@ module ActiveSupport # # * <tt>:skip_after_callbacks_if_terminated</tt> - Determines if after # callbacks should be terminated by the <tt>:terminator</tt> option. By - # default after callbacks executed no matter if callback chain was - # terminated or not. Option makes sense only when <tt>:terminator</tt> + # default after callbacks are executed no matter if callback chain was + # terminated or not. This option makes sense only when <tt>:terminator</tt> # option is specified. # # * <tt>:scope</tt> - Indicates which methods should be executed when an |