Skip to content

Commit

Permalink
fix: correct grammar (#10981)
Browse files Browse the repository at this point in the history
  • Loading branch information
lpedromachado authored and eseliger committed May 22, 2019
1 parent 0569f42 commit 41985c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/model.js
Expand Up @@ -329,7 +329,7 @@ class Model {
static _transformStringAssociation(include, self) {
if (self && typeof include === 'string') {
if (!self.associations.hasOwnProperty(include)) {
throw new Error(`Association with alias "${include}" does not exists`);
throw new Error(`Association with alias "${include}" does not exist`);
}
return self.associations[include];
}
Expand Down

0 comments on commit 41985c5

Please sign in to comment.