diff --git a/lib/hooks.js b/lib/hooks.js index 815d1aa2..9288f55b 100644 --- a/lib/hooks.js +++ b/lib/hooks.js @@ -1,10 +1,11 @@ -/** +/*! * Module exports */ module.exports = Hookable; -/** - * Hooks mixins +/* + * Hooks object. + * @class Hookable */ function Hookable() { diff --git a/lib/include.js b/lib/include.js index c459451b..f276b3d9 100644 --- a/lib/include.js +++ b/lib/include.js @@ -36,7 +36,7 @@ function Inclusion() { *``` Passport.include(passports, {owner: [{posts: 'images'}, 'passports']}); * * @param {Array} objects Array of instances - * @param {String}, {Object} or {Array} include Which relations to load. + * @param {String|Object|Array} include Which relations to load. * @param {Function} cb Callback called when relations are loaded * */