mirror of
https://github.com/Hopiu/annotate-extension.git
synced 2026-03-17 00:10:23 +00:00
Merge pull request #17 from jolson474/master
Added newline characters before prefixes and at end
This commit is contained in:
commit
74413ff2b0
1 changed files with 1 additions and 1 deletions
2
main.js
2
main.js
|
|
@ -190,7 +190,7 @@ define(function (require, exports, module) {
|
|||
//output += " * @return {type} ???\n";
|
||||
output.push(" */");
|
||||
|
||||
return prefix + output.join(prefix);
|
||||
return prefix + output.join("\n" + prefix) + "\n";
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue