diff options
author | Yves Senn <yves.senn@gmail.com> | 2014-05-10 23:42:43 +0200 |
---|---|---|
committer | Yves Senn <yves.senn@gmail.com> | 2014-05-10 23:43:54 +0200 |
commit | adcba34c57adba61bfaf45296a6dc707c8338b99 (patch) | |
tree | 3f1507b2b0832055a334717d2d8c92bbfeb341c4 /activerecord/lib | |
parent | f85942b4b0421bd8b8cafaa558b1ad2ff502c676 (diff) | |
download | rails-adcba34c57adba61bfaf45296a6dc707c8338b99.tar.gz rails-adcba34c57adba61bfaf45296a6dc707c8338b99.tar.bz2 rails-adcba34c57adba61bfaf45296a6dc707c8338b99.zip |
docs, fix typo in docs added by ed56e596a04673. [ci skip]
Diffstat (limited to 'activerecord/lib')
-rw-r--r-- | activerecord/lib/active_record/associations.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/associations.rb b/activerecord/lib/active_record/associations.rb index af6dabb793..727ee5f65f 100644 --- a/activerecord/lib/active_record/associations.rb +++ b/activerecord/lib/active_record/associations.rb @@ -419,8 +419,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 possibly. - # These operations happen before instance creation. The scope will be called with a +nil+ argument. + # Note: Joining, eager loading and preloading of these associations is not fully 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 |