mirror of
https://github.com/Hopiu/annotate-extension.git
synced 2026-04-27 10:04:45 +00:00
Merge pull request #12 from Semigradsky/master
Fix bug 'JSDoc Annotation in one row'
This commit is contained in:
commit
87c92ac973
1 changed files with 1 additions and 1 deletions
2
main.js
2
main.js
|
|
@ -173,7 +173,7 @@ define(function (require, exports, module) {
|
|||
//output += " * @return {type} ???\n";
|
||||
output.push(" */");
|
||||
|
||||
return prefix + output.join(prefix) + "\n";
|
||||
return prefix + output.join("\n" + prefix) + "\n";
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue