From 340051f4f5d48d0233bb0fc5160e1ca497cb6431 Mon Sep 17 00:00:00 2001 From: Paul van Brenk Date: Wed, 6 Apr 2016 13:34:18 -0700 Subject: [PATCH] Whitespace fix --- src/compiler/tsc.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/compiler/tsc.ts b/src/compiler/tsc.ts index 198b59af2dd..2324a089b25 100644 --- a/src/compiler/tsc.ts +++ b/src/compiler/tsc.ts @@ -140,7 +140,7 @@ namespace ts { let output = ""; if (diagnostic.file) { - const {start, length, file} = diagnostic; + const { start, length, file } = diagnostic; const { line: firstLine, character: firstLineChar } = getLineAndCharacterOfPosition(file, start); const { line: lastLine, character: lastLineChar } = getLineAndCharacterOfPosition(file, start + length); const lastLineInFile = getLineAndCharacterOfPosition(file, file.text.length).line; @@ -195,7 +195,7 @@ namespace ts { } output += sys.newLine; - output += `${relativeFileName}(${firstLine + 1},${firstLineChar + 1}): `; + output += `${ relativeFileName }(${ firstLine + 1 },${ firstLineChar + 1 }): `; } const categoryColor = categoryFormatMap[diagnostic.category];