Skip to content

Commit 0871628

Browse files
author
Arthur Ozga
committed
Remove trailing comment
1 parent 179ceda commit 0871628

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compiler/core.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1158,7 +1158,7 @@ namespace ts {
11581158

11591159
export function normalizePath(path: string): string {
11601160
path = normalizeSlashes(path);
1161-
const rootLength = getRootLength(path); // TODO: (arozga) this expects un-slash-normalized strings. eg: 'x:\\...'
1161+
const rootLength = getRootLength(path);
11621162
const root = path.substr(0, rootLength);
11631163
const normalized = getNormalizedParts(path, rootLength);
11641164
if (normalized.length) {

0 commit comments

Comments
 (0)