diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2017-10-20 11:49:03 -0400 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2017-10-23 12:51:05 -0400 |
commit | fea8d3509d65396f7c04a5e2608ef8863e1abe75 (patch) | |
tree | e9bd24a77d4ccbe2863a21acc7e462b8ea2c73e1 | |
parent | 19fbbebb1665e482d76cae30166b46e74ceafe29 (diff) | |
download | rails-fea8d3509d65396f7c04a5e2608ef8863e1abe75.tar.gz rails-fea8d3509d65396f7c04a5e2608ef8863e1abe75.tar.bz2 rails-fea8d3509d65396f7c04a5e2608ef8863e1abe75.zip |
Remove text about deprecation that was already removed
-rw-r--r-- | activerecord/lib/active_record/associations.rb | 3 |
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 # |