diff options
author | Ryan Bigg <radarlistener@gmail.com> | 2011-03-31 06:46:02 +1100 |
---|---|---|
committer | Ryan Bigg <radarlistener@gmail.com> | 2011-03-31 06:48:05 +1100 |
commit | 7a34ab7d60756856b79d2f8ef33ac843a78b70ad (patch) | |
tree | 67d5891e43a7bc95bd0cd940ca6025833b64b58f | |
parent | 6a1715111e16e07a30bd61eaecf059fd90732e59 (diff) | |
download | rails-7a34ab7d60756856b79d2f8ef33ac843a78b70ad.tar.gz rails-7a34ab7d60756856b79d2f8ef33ac843a78b70ad.tar.bz2 rails-7a34ab7d60756856b79d2f8ef33ac843a78b70ad.zip |
Fix typo in named_scope documentation
-rw-r--r-- | activerecord/lib/active_record/named_scope.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/named_scope.rb b/activerecord/lib/active_record/named_scope.rb index 9c0652c3a0..603a0c169a 100644 --- a/activerecord/lib/active_record/named_scope.rb +++ b/activerecord/lib/active_record/named_scope.rb @@ -104,7 +104,7 @@ module ActiveRecord # on scopes # # class Article < ActiveRecord::Base - # scope :pubished, where(:published => true) + # scope :published, where(:published => true) # scope :featured, where(:featured => true) # # def self.latest_article |