aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/base.rb
diff options
context:
space:
mode:
authorPavel Gorbokon <pahanix@gmail.com>2010-11-24 10:17:49 +0200
committerAaron Patterson <aaron.patterson@gmail.com>2010-12-15 14:02:30 -0800
commit96bae30538951367a82235785e7dba3577b50a5a (patch)
treef32ea8949e2faf5f63ecded1b827a4a7cd1e1606 /activerecord/lib/active_record/base.rb
parentaa40543022303d8a1b695e73ed71406c0da15bde (diff)
downloadrails-96bae30538951367a82235785e7dba3577b50a5a.tar.gz
rails-96bae30538951367a82235785e7dba3577b50a5a.tar.bz2
rails-96bae30538951367a82235785e7dba3577b50a5a.zip
Replace rudimentary named_scope with scope. [#6052 state:resolved]
* rename method names (actually in tests) * rename instance variable @_named_scopes_cache to @_scopes_cache * rename references in doc comments * don't touch CHANGELOG :)
Diffstat (limited to 'activerecord/lib/active_record/base.rb')
-rw-r--r--activerecord/lib/active_record/base.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/base.rb b/activerecord/lib/active_record/base.rb
index 7b9ce21ceb..d0f33c1d18 100644
--- a/activerecord/lib/active_record/base.rb
+++ b/activerecord/lib/active_record/base.rb
@@ -852,8 +852,8 @@ module ActiveRecord #:nodoc:
# limit(10) # Fires "SELECT * FROM posts LIMIT 10"
# }
#
- # It is recommended to use block form of unscoped because chaining unscoped with <tt>named_scope</tt>
- # does not work. Assuming that <tt>published</tt> is a <tt>named_scope</tt> following two statements are same.
+ # It is recommended to use block form of unscoped because chaining unscoped with <tt>scope</tt>
+ # does not work. Assuming that <tt>published</tt> is a <tt>scope</tt> following two statements are same.
#
# Post.unscoped.published
# Post.published