We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6b59158 + bdd7e24 commit 64a3bb8Copy full SHA for 64a3bb8
activerecord/lib/active_record/relation/query_methods.rb
@@ -500,7 +500,7 @@ def unscope!(*args) # :nodoc:
500
self
501
end
502
503
- # Performs a joins on +args+. The given symbol(s) should match the name of
+ # Performs JOINs on +args+. The given symbol(s) should match the name of
504
# the association(s).
505
#
506
# User.joins(:posts)
@@ -538,7 +538,7 @@ def joins!(*args) # :nodoc:
538
539
540
541
- # Performs a left outer joins on +args+:
+ # Performs LEFT OUTER JOINs on +args+:
542
543
# User.left_outer_joins(:posts)
544
# => SELECT "users".* FROM "users" LEFT OUTER JOIN "posts" ON "posts"."user_id" = "users"."id"
0 commit comments