aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--activerecord/lib/active_record/named_scope.rb2
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