From 0871628ace675e06ce161c924b29cd8dbde5577d Mon Sep 17 00:00:00 2001 From: Arthur Ozga Date: Mon, 3 Oct 2016 11:30:35 -0700 Subject: [PATCH] Remove trailing comment --- src/compiler/core.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler/core.ts b/src/compiler/core.ts index c137dfa644a..7d705acc5de 100644 --- a/src/compiler/core.ts +++ b/src/compiler/core.ts @@ -1158,7 +1158,7 @@ namespace ts { export function normalizePath(path: string): string { path = normalizeSlashes(path); - const rootLength = getRootLength(path); // TODO: (arozga) this expects un-slash-normalized strings. eg: 'x:\\...' + const rootLength = getRootLength(path); const root = path.substr(0, rootLength); const normalized = getNormalizedParts(path, rootLength); if (normalized.length) {