aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/callbacks.rb
diff options
context:
space:
mode:
authorJon Moss <me@jonathanmoss.me>2016-04-16 15:51:09 -0400
committerJon Moss <me@jonathanmoss.me>2016-04-17 15:04:10 -0400
commitbca2e69b785fa3cdbe148b0d2dd5d3b58f6daf53 (patch)
tree860ee1ad780224e3bf594021ab95f46565ab1d5c /activesupport/lib/active_support/callbacks.rb
parent39e087cbf5628ecc351fc86a3a1e320be193bf29 (diff)
downloadrails-bca2e69b785fa3cdbe148b0d2dd5d3b58f6daf53.tar.gz
rails-bca2e69b785fa3cdbe148b0d2dd5d3b58f6daf53.tar.bz2
rails-bca2e69b785fa3cdbe148b0d2dd5d3b58f6daf53.zip
Specify that behavior will be deprecated in Rails 5.1
Diffstat (limited to 'activesupport/lib/active_support/callbacks.rb')
-rw-r--r--activesupport/lib/active_support/callbacks.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/callbacks.rb b/activesupport/lib/active_support/callbacks.rb
index d878d44d02..904d3f0eb0 100644
--- a/activesupport/lib/active_support/callbacks.rb
+++ b/activesupport/lib/active_support/callbacks.rb
@@ -782,7 +782,7 @@ module ActiveSupport
def display_deprecation_warning_for_false_terminator
ActiveSupport::Deprecation.warn(<<-MSG.squish)
- Returning `false` in Active Record and Active Model callbacks will not implicitly halt a callback chain in the next release of Rails.
+ Returning `false` in Active Record and Active Model callbacks will not implicitly halt a callback chain in Rails 5.1.
To explicitly halt the callback chain, please use `throw :abort` instead.
MSG
end