aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/scoping
diff options
context:
space:
mode:
authordcurtis <crypto@dustincurtis.com>2012-04-10 22:05:43 -0700
committerdcurtis <crypto@dustincurtis.com>2012-04-10 22:05:43 -0700
commit248fa70ccd42593ddb0d5f76a3b51e86016c527f (patch)
tree8fa1f0fe405b74a1eeaf46cc193865f40073a266 /activerecord/lib/active_record/scoping
parent1c8e222ceac9f5e73b76071559800f00f9ee35db (diff)
downloadrails-248fa70ccd42593ddb0d5f76a3b51e86016c527f.tar.gz
rails-248fa70ccd42593ddb0d5f76a3b51e86016c527f.tar.bz2
rails-248fa70ccd42593ddb0d5f76a3b51e86016c527f.zip
Corrected grammatical errors in schema_dumper and scoping/default
Diffstat (limited to 'activerecord/lib/active_record/scoping')
-rw-r--r--activerecord/lib/active_record/scoping/default.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/scoping/default.rb b/activerecord/lib/active_record/scoping/default.rb
index b0609a8c08..45c34005c3 100644
--- a/activerecord/lib/active_record/scoping/default.rb
+++ b/activerecord/lib/active_record/scoping/default.rb
@@ -31,7 +31,7 @@ module ActiveRecord
# Post.limit(10) # Fires "SELECT * FROM posts LIMIT 10"
# }
#
- # It is recommended to use the block form of unscoped because chaining
+ # It is recommended that you use the block form of unscoped because chaining
# unscoped with <tt>scope</tt> does not work. Assuming that
# <tt>published</tt> is a <tt>scope</tt>, the following two statements
# are equal: the default_scope is applied on both.