You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**
* Assign the project to an employee.
* @param {string} name - The name of the assigned person
*/
Project.prototype.assign = function(name) {
// ...
};
will parse the param comment as - The name of the assigned person, the suggestion is to clean up the comment to The name of the assigned person
The text was updated successfully, but these errors were encountered:
Suggestion
Remove the hypen separator from jsdoc property comments
Suggested in #44932 to open this for discussion
According to https://jsdoc.app/tags-param.html space-hyphen-space is a standard separator for the
@param
tagExample:
will parse the param comment as
- The name of the assigned person
, the suggestion is to clean up the comment toThe name of the assigned person
The text was updated successfully, but these errors were encountered: