diff --git a/activerecord/lib/active_record/relation/query_methods.rb b/activerecord/lib/active_record/relation/query_methods.rb index 6e99656387a485661f78f7042fd2f1e6f5ba4fb2..b162ad14d770fcd44085f6c66b6d005b5b7f0ca3 100644 --- a/activerecord/lib/active_record/relation/query_methods.rb +++ b/activerecord/lib/active_record/relation/query_methods.rb @@ -503,8 +503,7 @@ def unscope!(*args) # :nodoc: # # SELECT "users".* # # FROM "users" # # INNER JOIN "posts" ON "posts"."user_id" = "users"."id" - # # INNER JOIN "comments" "comments_posts" - # # ON "comments_posts"."post_id" = "posts"."id" + # # INNER JOIN "comments" ON "comments"."post_id" = "posts"."id" # # You can use strings in order to customize your joins: #