Remove new lint from services.ts

This commit is contained in:
Nathan Shively-Sanders
2015-12-22 16:14:55 -08:00
parent abf9961528
commit 34ddaef44c

View File

@@ -469,7 +469,8 @@ namespace ts {
function pushDocCommentLineText(docComments: SymbolDisplayPart[], text: string, blankLineCount: number) {
// Add the empty lines in between texts
while (blankLineCount--) {
while (blankLineCount) {
blankLineCount--;
docComments.push(textPart(""));
}