JSDoc expects an empty comment line after a block description.
For example:
correct
/** * For example `http` (always present). * * @name mw.Uri.prototype.protocol * @type {string} */
incorrect
/** * For example `http` (always present). * @name mw.Uri.prototype.protocol * @type {string} */
To do:
- In the notification.js file, fix all the comment blocks so they conform to this convention.
- Run npm install grunt and grunt lint, and ensure that there are no warnings for this file