mirror of
https://github.com/Hopiu/annotate-extension.git
synced 2026-05-18 11:31:06 +00:00
Added newline characters before prefixes and at end (output was previously all on a single line)
This commit is contained in:
parent
48643d06b5
commit
1ef4d579a8
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