aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/named_scope.rb
diff options
context:
space:
mode:
authorLee Reilly <lee@leereilly.net>2011-05-29 12:40:24 -0700
committerLee Reilly <lee@leereilly.net>2011-05-29 12:40:24 -0700
commit4f234bfd799f471490775a2843b3cf7db2af21ed (patch)
treeea9623612567ea02dbdd5a73463274bb3f92a6f9 /activerecord/lib/active_record/named_scope.rb
parent18b153d15d76ff2f06b76a16ca46b548b7d6750a (diff)
downloadrails-4f234bfd799f471490775a2843b3cf7db2af21ed.tar.gz
rails-4f234bfd799f471490775a2843b3cf7db2af21ed.tar.bz2
rails-4f234bfd799f471490775a2843b3cf7db2af21ed.zip
Corrected some typos and American vs. Queen's English issues
Diffstat (limited to 'activerecord/lib/active_record/named_scope.rb')
-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 588f52be44..14db7a6cd6 100644
--- a/activerecord/lib/active_record/named_scope.rb
+++ b/activerecord/lib/active_record/named_scope.rb
@@ -17,7 +17,7 @@ module ActiveRecord
# posts.each {|p| puts p.name } # Fires "select * from posts" and loads post objects
#
# fruits = Fruit.scoped
- # fruits = fruits.where(:colour => 'red') if options[:red_only]
+ # fruits = fruits.where(:color => 'red') if options[:red_only]
# fruits = fruits.limit(10) if limited?
#
# Anonymous \scopes tend to be useful when procedurally generating complex