Added newline characters before prefixes and at end (output was previously all on a single line)

This commit is contained in:
Jeff Olson 2014-02-15 12:46:19 -06:00
parent 48643d06b5
commit 1ef4d579a8

View file

@ -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";
}