aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarson McDonald <carson@ioncannon.net>2013-03-22 08:41:38 -0400
committerCarson McDonald <carson@ioncannon.net>2013-03-22 08:41:38 -0400
commit6645dc3571a23bc5a69622e4ab22af30df7cb2b5 (patch)
treee15b0f5fcaefb8a7505bae91b65d2dd2b4790209
parent18f9d46d4ff0c9be6f4561d06d66f4c55b81731c (diff)
downloadrails-6645dc3571a23bc5a69622e4ab22af30df7cb2b5.tar.gz
rails-6645dc3571a23bc5a69622e4ab22af30df7cb2b5.tar.bz2
rails-6645dc3571a23bc5a69622e4ab22af30df7cb2b5.zip
Fix typo
[ci skip]
-rw-r--r--activerecord/lib/active_record/relation/query_methods.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/relation/query_methods.rb b/activerecord/lib/active_record/relation/query_methods.rb
index b7960936cf..588e3f2ddd 100644
--- a/activerecord/lib/active_record/relation/query_methods.rb
+++ b/activerecord/lib/active_record/relation/query_methods.rb
@@ -614,7 +614,7 @@ module ActiveRecord
#
# 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 quering the database.
+ # 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.