diff --git a/activerecord/lib/active_record/associations.rb b/activerecord/lib/active_record/associations.rb
index 56fe19a1db..85696505ab 100755
--- a/activerecord/lib/active_record/associations.rb
+++ b/activerecord/lib/active_record/associations.rb
@@ -600,8 +600,7 @@ module ActiveRecord
# include the joined columns.
# * :as: Specifies a polymorphic interface (See #belongs_to).
# * :through: Specifies a Join Model to perform the query through. Options for :class_name and :foreign_key
- # are ignored, as the association uses the source reflection. You can only use a :through query through a belongs_to
- # or has_many association.
+ # are ignored, as the association uses the source reflection.
# * :source: Specifies the source association name used by has_many :through queries. Only use it if the name cannot be
# inferred from the association. has_many :subscribers, :through => :subscriptions will look for either +:subscribers+ or
# +:subscriber+ on +Subscription+, unless a +:source+ is given.