Respond to PR feedback

This commit is contained in:
Andy Hanson
2016-10-19 06:26:50 -07:00
parent 7685e6af15
commit f11dbc1ad1
6 changed files with 8 additions and 8 deletions

View File

@@ -182,9 +182,9 @@ namespace ts {
}
}
function emitTripleSlashLeadingComment(commentPos: number, commentEnd: number, _kind: SyntaxKind, hasTrailingNewLine: boolean, rangePos: number) {
function emitTripleSlashLeadingComment(commentPos: number, commentEnd: number, kind: SyntaxKind, hasTrailingNewLine: boolean, rangePos: number) {
if (isTripleSlashComment(commentPos, commentEnd)) {
emitLeadingComment(commentPos, commentEnd, _kind, hasTrailingNewLine, rangePos);
emitLeadingComment(commentPos, commentEnd, kind, hasTrailingNewLine, rangePos);
}
}