From 67a16120dbcdf643bb9c5f239d1dc59062597aad Mon Sep 17 00:00:00 2001 From: Isaac Kabel <37567350+i-g-k@users.noreply.github.com> Date: Sun, 27 Aug 2023 20:39:50 +1200 Subject: [PATCH] Update advanced-many-to-many.md Fix error in comment in sample --- .../advanced-association-concepts/advanced-many-to-many.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/versioned_docs/version-6.x.x/advanced-association-concepts/advanced-many-to-many.md b/versioned_docs/version-6.x.x/advanced-association-concepts/advanced-many-to-many.md index f497b2e78..89445e559 100644 --- a/versioned_docs/version-6.x.x/advanced-association-concepts/advanced-many-to-many.md +++ b/versioned_docs/version-6.x.x/advanced-association-concepts/advanced-many-to-many.md @@ -240,7 +240,7 @@ User.findAll({ }); // This emulates the `User.findAll({ include: Profile })`, however // the resulting object structure is a bit different. The original // structure has the form `user.profiles[].grant`, while the emulated - // structure has the form `user.grants[].profiles[]`. + // structure has the form `user.grants[].profile`. ``` ### The best of both worlds: the Super Many-to-Many relationship