aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support
diff options
context:
space:
mode:
authorRafael França <rafaelmfranca@gmail.com>2016-04-17 19:25:51 -0300
committerRafael França <rafaelmfranca@gmail.com>2016-04-17 19:25:51 -0300
commit847084e04665b2b1efd02dd82bde2ca2981bae88 (patch)
tree4f92662aad6f43a77d234cb82b0abce74e093a59 /activesupport/lib/active_support
parent5154701e204b1c71c2b44d7b9f931dbe468f8030 (diff)
parentbca2e69b785fa3cdbe148b0d2dd5d3b58f6daf53 (diff)
downloadrails-847084e04665b2b1efd02dd82bde2ca2981bae88.tar.gz
rails-847084e04665b2b1efd02dd82bde2ca2981bae88.tar.bz2
rails-847084e04665b2b1efd02dd82bde2ca2981bae88.zip
Merge pull request #24595 from maclover7/jm-cleanup-2
Specify that behavior will be deprecated in Rails 5.1
Diffstat (limited to 'activesupport/lib/active_support')
-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