jaguarjs-jsdoc
jaguarjs-jsdoc copied to clipboard
Return information misses first word
I noticed that first word of return description gets missed in the output.
Example from JaguarJS (collie.util.getBoundaryToPoints):
/**
* ...
* @return {Array} points [[left, top], [right, top], [right, bottom], [left, bottom]]
*/
Output:
Returns:
[[left, top], [right, top], [right, bottom], [left, bottom]]
Word "points" is missing.
For complex return values it creates a proper output, but nor for a simple case.