aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/associations.rb
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2017-10-20 11:49:03 -0400
committerRafael Mendonça França <rafaelmfranca@gmail.com>2017-10-23 12:51:05 -0400
commitfea8d3509d65396f7c04a5e2608ef8863e1abe75 (patch)
treee9bd24a77d4ccbe2863a21acc7e462b8ea2c73e1 /activerecord/lib/active_record/associations.rb
parent19fbbebb1665e482d76cae30166b46e74ceafe29 (diff)
downloadrails-fea8d3509d65396f7c04a5e2608ef8863e1abe75.tar.gz
rails-fea8d3509d65396f7c04a5e2608ef8863e1abe75.tar.bz2
rails-fea8d3509d65396f7c04a5e2608ef8863e1abe75.zip
Remove text about deprecation that was already removed
Diffstat (limited to 'activerecord/lib/active_record/associations.rb')
-rw-r--r--activerecord/lib/active_record/associations.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/associations.rb b/activerecord/lib/active_record/associations.rb
index d1c2286227..573f41d7ad 100644
--- a/activerecord/lib/active_record/associations.rb
+++ b/activerecord/lib/active_record/associations.rb
@@ -557,9 +557,8 @@ module ActiveRecord
# has_many :birthday_events, ->(user) { where(starts_on: user.birthday) }, class_name: 'Event'
# end
#
- # Note: Joining, eager loading and preloading of these associations is not fully possible.
+ # Note: Joining, eager loading and preloading of these associations is not possible.
# These operations happen before instance creation and the scope will be called with a +nil+ argument.
- # This can lead to unexpected behavior and is deprecated.
#
# == Association callbacks
#