aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/relation/query_methods.rb
diff options
context:
space:
mode:
authorAkshay Vishnoi <akshay.vishnoi@vinsol.com>2013-12-18 11:52:54 +0530
committerAkshay Vishnoi <akshay.vishnoi@vinsol.com>2013-12-18 11:52:54 +0530
commitdb765ec741911ca8d9dfc9403f532d239301e435 (patch)
tree6a6c43a3ce6453cda80a4adde14319e72aeb3b42 /activerecord/lib/active_record/relation/query_methods.rb
parentc758093eca303704f52b45fd0660e13600b9b315 (diff)
downloadrails-db765ec741911ca8d9dfc9403f532d239301e435.tar.gz
rails-db765ec741911ca8d9dfc9403f532d239301e435.tar.bz2
rails-db765ec741911ca8d9dfc9403f532d239301e435.zip
#none documentation updated [ci skip]
Diffstat (limited to 'activerecord/lib/active_record/relation/query_methods.rb')
-rw-r--r--activerecord/lib/active_record/relation/query_methods.rb9
1 files changed, 4 insertions, 5 deletions
diff --git a/activerecord/lib/active_record/relation/query_methods.rb b/activerecord/lib/active_record/relation/query_methods.rb
index 4f4961d273..e7b8809fe0 100644
--- a/activerecord/lib/active_record/relation/query_methods.rb
+++ b/activerecord/lib/active_record/relation/query_methods.rb
@@ -631,12 +631,11 @@ module ActiveRecord
self
end
- # Returns a chainable relation with zero records, specifically an
- # instance of the <tt>ActiveRecord::NullRelation</tt> class.
+ # Returns a chainable relation with zero records.
#
- # The returned <tt>ActiveRecord::NullRelation</tt> inherits from Relation and implements the
- # Null Object pattern. It is an object with defined null behavior and always returns an empty
- # array of records without querying the database.
+ # The returned relation implements the Null Object pattern. It is an
+ # object with defined null behavior and always returns an empty array of
+ # records without querying the database.
#
# Any subsequent condition chained to the returned relation will continue
# generating an empty relation and will not fire any query to the database.