diff --git a/activerecord/lib/active_record/associations.rb b/activerecord/lib/active_record/associations.rb
index 60bbc325df..98efdb90c8 100644
--- a/activerecord/lib/active_record/associations.rb
+++ b/activerecord/lib/active_record/associations.rb
@@ -213,7 +213,7 @@ module ActiveRecord
#
# If your model class is Project, the module is
# named Project::GeneratedFeatureMethods. The GeneratedFeatureMethods module is
- # is included in the model class immediately after the (anonymous) generated attributes methods
+ # included in the model class immediately after the (anonymous) generated attributes methods
# module, meaning an association will override the methods for an attribute with the same name.
#
# === A word of warning