@@ -235,10 +235,10 @@ def includes!(*args) # :nodoc:
235
235
# # LIMIT 5
236
236
#
237
237
# Instead of loading the 5 addresses with 5 separate queries, all addresses
238
- # are loaded with a single query.
238
+ # are loaded with a single joined query.
239
239
#
240
- # Loading multiple and nested associations is possible using a Arrays and
241
- # Hashes, similar to #includes:
240
+ # Loading multiple and nested associations is possible using Hashes and Arrays,
241
+ # similar to #includes:
242
242
#
243
243
# User.eager_load(:address, friends: [:address, :followers])
244
244
# # SELECT "users"."id" AS t0_r0, "users"."name" AS t0_r1, ... FROM "users"
@@ -272,8 +272,8 @@ def eager_load!(*args) # :nodoc:
272
272
# Instead of loading the 5 addresses with 5 separate queries, all addresses
273
273
# are loaded with a separate query.
274
274
#
275
- # Loading multiple and nested associations is possible using a Arrays and
276
- # Hashes, similar to #includes:
275
+ # Loading multiple and nested associations is possible using Hashes and Arrays,
276
+ # similar to #includes:
277
277
#
278
278
# User.preload(:address, friends: [:address, :followers])
279
279
# # SELECT "users".* FROM "users"
0 commit comments