diff options
author | Rafael França <rafaelmfranca@gmail.com> | 2016-06-14 15:10:10 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-14 15:10:10 -0400 |
commit | 245fce127bdae307921dd9db573863ca2d0ae1af (patch) | |
tree | 1f9a2ce63428f650c747cffab20e58ae27d5b0e3 /activesupport | |
parent | 1f63cd9190a44d5604ec7ea69cc78e31760611cf (diff) | |
parent | 9bcaa2c1544cb2f64fbffb3384370343b219b772 (diff) | |
download | rails-245fce127bdae307921dd9db573863ca2d0ae1af.tar.gz rails-245fce127bdae307921dd9db573863ca2d0ae1af.tar.bz2 rails-245fce127bdae307921dd9db573863ca2d0ae1af.zip |
Merge pull request #25402 from alexcameron89/master
Change AS::Callback to ActiveSupport::Callbacks in doc [ci skip]
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/callbacks.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/callbacks.rb b/activesupport/lib/active_support/callbacks.rb index 1559fe641c..557a4695a6 100644 --- a/activesupport/lib/active_support/callbacks.rb +++ b/activesupport/lib/active_support/callbacks.rb @@ -103,7 +103,7 @@ module ActiveSupport end # A hook invoked every time a before callback is halted. - # This can be overridden in AS::Callback implementors in order + # This can be overridden in ActiveSupport::Callbacks implementors in order # to provide better debugging/logging. def halted_callback_hook(filter) end |