aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record
diff options
context:
space:
mode:
authorRohit Arondekar <rohit.arondekar@gmail.com>2012-02-06 17:20:30 +0530
committerRohit Arondekar <rohit.arondekar@gmail.com>2012-02-06 17:20:30 +0530
commit2f97eaea0eade22b70c08dda78cd9601379212bd (patch)
treeda3bdc9efd5a840b1ab68c4944bca31252f80652 /activerecord/lib/active_record
parent7f8f05f6275bae436fa801d2988498940ad641a7 (diff)
downloadrails-2f97eaea0eade22b70c08dda78cd9601379212bd.tar.gz
rails-2f97eaea0eade22b70c08dda78cd9601379212bd.tar.bz2
rails-2f97eaea0eade22b70c08dda78cd9601379212bd.zip
minor tidy up of none relation query method
Diffstat (limited to 'activerecord/lib/active_record')
-rw-r--r--activerecord/lib/active_record/relation/query_methods.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/relation/query_methods.rb b/activerecord/lib/active_record/relation/query_methods.rb
index 6f464d6ad0..b4f21410c1 100644
--- a/activerecord/lib/active_record/relation/query_methods.rb
+++ b/activerecord/lib/active_record/relation/query_methods.rb
@@ -206,8 +206,8 @@ module ActiveRecord
# Any subsequent condition chained to the returned relation will continue
# generating an empty relation and will not fire any query to the database.
#
- # Used in cases where is needed a method or a scope that could return zero
- # results but the response has to be chainable.
+ # Used in cases where a method or scope could return zero results but the
+ # response needs to be chainable.
#
# For example:
#