Fix small typo in models-usage.md (#7752)
```
User.findAll({
where: {
'$Instruments.name$': { $iLike: '%ooth%' }
}
include: [{
model: Tool,
as: 'Instruments'
}]
})
```
Did not have a comma between the key `include` and the key `where`. People who would copy/paste this code would get an error.
A comma was added.
Showing
with
1 additions
and
1 deletions
-
Please register or sign in to post a comment