diff options
| -rw-r--r-- | activerecord/lib/active_record/associations/collection_proxy.rb | 6 | 
1 files changed, 6 insertions, 0 deletions
| diff --git a/activerecord/lib/active_record/associations/collection_proxy.rb b/activerecord/lib/active_record/associations/collection_proxy.rb index 6d001e8d10..776d65294e 100644 --- a/activerecord/lib/active_record/associations/collection_proxy.rb +++ b/activerecord/lib/active_record/associations/collection_proxy.rb @@ -129,6 +129,9 @@ module ActiveRecord        ##        # :method: first        # +      # :call-seq: +      #   first(limit = nil) +      #        # Returns the first record, or the first +n+ records, from the collection.        # If the collection is empty, the first form returns +nil+, and the second        # form returns an empty array. @@ -159,6 +162,9 @@ module ActiveRecord        ##        # :method: last        # +      # :call-seq: +      #   last(limit = nil) +      #        # Returns the last record, or the last +n+ records, from the collection.        # If the collection is empty, the first form returns +nil+, and the second        # form returns an empty array. | 
