diff options
Diffstat (limited to 'activerecord')
| -rw-r--r-- | activerecord/lib/active_record/base.rb | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/base.rb b/activerecord/lib/active_record/base.rb index d07f9365b3..b2e058d746 100644 --- a/activerecord/lib/active_record/base.rb +++ b/activerecord/lib/active_record/base.rb @@ -895,7 +895,7 @@ module ActiveRecord #:nodoc:        # not use the default_scope:        #        #   Post.unscoped { -      #     limit(10) # Fires "SELECT * FROM posts LIMIT 10" +      #     Post.limit(10) # Fires "SELECT * FROM posts LIMIT 10"        #   }        #        # It is recommended to use block form of unscoped because chaining unscoped with <tt>scope</tt>  | 
