Skip to content

Commit 271bb29

Browse files
author
Yui T
committed
Minor spelling and spacing fix
1 parent 0435c14 commit 271bb29

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/compiler/core.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,7 @@ module ts {
383383
return [path.substr(0, rootLength)].concat(normalizedParts);
384384
}
385385

386-
export function getNormalizedPathComponents(path: string, getCurrentDirectory: ()=>string) {
386+
export function getNormalizedPathComponents(path: string, getCurrentDirectory: () => string) {
387387
var path = normalizeSlashes(path);
388388
var rootLength = getRootLength(path);
389389
if (rootLength == 0) {
@@ -444,7 +444,7 @@ module ts {
444444
}
445445
}
446446

447-
function getNormalizedPathOrUrlComponents(pathOrUrl: string, getCurrentDirectory: ()=>string) {
447+
function getNormalizedPathOrUrlComponents(pathOrUrl: string, getCurrentDirectory: () => string) {
448448
if (isUrl(pathOrUrl)) {
449449
return getNormalizedPathComponentsOfUrl(pathOrUrl);
450450
}

tests/cases/fourslash/fourslash.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ enum EmitReturnStatus {
5454
EmitErrorsEncountered = 4 // Emitter errors occured during emitting process
5555
}
5656

57-
5857
module FourSlashInterface {
5958
declare var FourSlash;
6059

0 commit comments

Comments
 (0)