aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/relation/query_methods.rb
diff options
context:
space:
mode:
authorRohit Arondekar <rohit.arondekar@gmail.com>2012-02-07 10:09:51 +0530
committerRohit Arondekar <rohit.arondekar@gmail.com>2012-02-07 10:09:51 +0530
commit80d3a0e16e8a3e7f02fc85a0136b52b3a1a19ebc (patch)
tree8e2972d904c2c20da6abe3d077c12cd47cfa16ca /activerecord/lib/active_record/relation/query_methods.rb
parent2f97eaea0eade22b70c08dda78cd9601379212bd (diff)
downloadrails-80d3a0e16e8a3e7f02fc85a0136b52b3a1a19ebc.tar.gz
rails-80d3a0e16e8a3e7f02fc85a0136b52b3a1a19ebc.tar.bz2
rails-80d3a0e16e8a3e7f02fc85a0136b52b3a1a19ebc.zip
use appropriate words for docs of Model.none
Diffstat (limited to 'activerecord/lib/active_record/relation/query_methods.rb')
-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 b4f21410c1..cc4ef2d078 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 a method or scope could return zero results but the
- # response needs to be chainable.
+ # Used in cases where a method or scope could return zero records but the
+ # result needs to be chainable.
#
# For example:
#