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