diff --git a/activerecord/lib/active_record/base.rb b/activerecord/lib/active_record/base.rb index 365af0a93eb93a10e1090d4dc657cd42404f0d83..94b3ac105769aa52d1fa3f36885ed8af81726ee9 100755 --- a/activerecord/lib/active_record/base.rb +++ b/activerecord/lib/active_record/base.rb @@ -374,7 +374,7 @@ class << self # Class methods # * :order: An SQL fragment like "created_at DESC, name". # * :group: An attribute name by which the result should be grouped. Uses the GROUP BY SQL-clause. # * :limit: An integer determining the limit on the number of rows that should be returned. - # * :offset: An integer determining the offset from where the rows should be fetched. So at 5, it would skip the first 4 rows. + # * :offset: An integer determining the offset from where the rows should be fetched. So at 5, it would skip rows 0 through 4. # * :joins: An SQL fragment for additional joins like "LEFT JOIN comments ON comments.post_id = id". (Rarely needed). # The records will be returned read-only since they will have attributes that do not correspond to the table's columns. # Pass :readonly => false to override.