spadgos / sublime-jsdocs

Simplifies writing DocBlock comments in Javascript, PHP, CoffeeScript, Actionscript, C & C++
MIT License
3.11k stars 278 forks source link

Description missing #439

Open manatarms opened 7 years ago

manatarms commented 7 years ago

For some reason the plugin doesn't add description in the comments. Here is the generated comment and the code.

/**
 * @param  {string}
 * @param  {object}
 * @param  {boolean}
 * @return {object}
 */

let statsBuilder = (
  framework,
  frameworkConfig,
  includeSubdirectories
) => {
  return stats;
};

Thanks!