Fix up todo in jsdoccomment template code.

This commit is contained in:
Paul van Brenk
2016-01-24 16:08:45 -08:00
parent 9a20df36e5
commit 700af6a2ce

View File

@@ -7179,8 +7179,7 @@ namespace ts {
const indentationStr = sourceFile.text.substr(lineStart, posLineAndChar.character);
// TODO: call a helper method instead once PR #4133 gets merged in.
const newLine = host.getNewLine ? host.getNewLine() : "\r\n";
const newLine = getNewLineOrDefaultFromHost(host);
let docParams = "";
for (let i = 0, numParams = parameters.length; i < numParams; i++) {