7.4 Line wrapping
Line-wrapped block tags are indented four spaces. Wrapped description text maybe lined up with the description on previous lines, but this horizontalalignment is discouraged.
/**
* Illustrates line wrapping for long param/return descriptions.
* @param {string} foo This is a param with a description too long to fit in
* one line.
* @return {number} This returns something that has a description too long to
* fit in one line.
*/
exports.method = function(foo) {
return 5;
};
Do not indent when wrapping a @desc
or @fileoverview
description.