diff options
author | Zachary Scott <e@zzak.io> | 2014-08-27 00:16:59 -0700 |
---|---|---|
committer | Zachary Scott <e@zzak.io> | 2014-08-27 00:16:59 -0700 |
commit | c87c36fe501f2f3a37e8b671c6d96f148bdaebb8 (patch) | |
tree | 255f09f731e31e073b31770c7ea912065bb8dc9b /activerecord | |
parent | 37f884b4fb90eb69e853a4e6328dffebc3f14478 (diff) | |
parent | 02dfc9e460982b4742ddef2838fa3bba1a2d7e55 (diff) | |
download | rails-c87c36fe501f2f3a37e8b671c6d96f148bdaebb8.tar.gz rails-c87c36fe501f2f3a37e8b671c6d96f148bdaebb8.tar.bz2 rails-c87c36fe501f2f3a37e8b671c6d96f148bdaebb8.zip |
Merge pull request #16713 from tomkadwill/documented_eqls_other_param
[ci skip] Updated documentation syntax of other parameter for rdoc
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/lib/active_record/associations/collection_proxy.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/associations/collection_proxy.rb b/activerecord/lib/active_record/associations/collection_proxy.rb index aadcdc4194..8c7b0b4be9 100644 --- a/activerecord/lib/active_record/associations/collection_proxy.rb +++ b/activerecord/lib/active_record/associations/collection_proxy.rb @@ -879,7 +879,7 @@ module ActiveRecord # Equivalent to <tt>Array#==</tt>. Returns +true+ if the two arrays # contain the same number of elements and if each element is equal - # to the corresponding element in the other array, otherwise returns + # to the corresponding element in the +other+ array, otherwise returns # +false+. # # class Person < ActiveRecord::Base |