不要怂,就是干,撸起袖子干!

Commit fbb11120 by Richard Kho

Fixed misspelling in mixin.js

On line 19, 'useful' was misspelled as 'usefull'. It has now been changed to its proper spelling.

No other changes have been made to this document or the rest of the repo :)
1 parent e87f972c
Showing with 1 additions and 1 deletions
......@@ -16,7 +16,7 @@ var Utils = require('./../utils')
*
* Creating an association will add a foreign key constraint to the attributes. All associations use `CASCADE` on update and `SET NULL` on delete, except for n:m, which also uses `CASCADE` on delete.
*
* When creating associations, you can provide an alias, via the `as` option. This is usefull if the same model
* When creating associations, you can provide an alias, via the `as` option. This is useful if the same model
* is associated twice, or you want your association to be called something other than the name of the target model.
* As an example, consider the case where users have many pictures, one of which is their profile picture. All pictures
* have a `userId`, but in addition the user model also has a `profilePictureId`, to be able to easily load the user's profile
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!