aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/relation/query_methods.rb
diff options
context:
space:
mode:
authorErnie Miller <ernie@erniemiller.org>2013-03-04 19:02:24 -0500
committerErnie Miller <ernie@erniemiller.org>2013-03-04 19:02:24 -0500
commit0c3998782b455c81a0cb857a7bd4c90c5ab2e821 (patch)
treeaf7f2d466e336a1981c8533470ca0af38c3eaa33 /activerecord/lib/active_record/relation/query_methods.rb
parent50b3b968d481a6cef9122b2e3fe33f61b8f44179 (diff)
downloadrails-0c3998782b455c81a0cb857a7bd4c90c5ab2e821.tar.gz
rails-0c3998782b455c81a0cb857a7bd4c90c5ab2e821.tar.bz2
rails-0c3998782b455c81a0cb857a7bd4c90c5ab2e821.zip
Fix WhereChain docs to mention only not
Diffstat (limited to 'activerecord/lib/active_record/relation/query_methods.rb')
-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 4b8c40592e..5076ae8a76 100644
--- a/activerecord/lib/active_record/relation/query_methods.rb
+++ b/activerecord/lib/active_record/relation/query_methods.rb
@@ -5,7 +5,7 @@ module ActiveRecord
extend ActiveSupport::Concern
# WhereChain objects act as placeholder for queries in which #where does not have any parameter.
- # In this case, #where must be chained with either #not, #like, or #not_like to return a new relation.
+ # In this case, #where must be chained with #not to return a new relation.
class WhereChain
def initialize(scope)
@scope = scope