Minor spelling and spacing fix

This commit is contained in:
Yui T
2014-09-04 15:08:50 -07:00
parent 0435c14081
commit 271bb29c94
2 changed files with 2 additions and 3 deletions

View File

@@ -383,7 +383,7 @@ module ts {
return [path.substr(0, rootLength)].concat(normalizedParts);
}
export function getNormalizedPathComponents(path: string, getCurrentDirectory: ()=>string) {
export function getNormalizedPathComponents(path: string, getCurrentDirectory: () => string) {
var path = normalizeSlashes(path);
var rootLength = getRootLength(path);
if (rootLength == 0) {
@@ -444,7 +444,7 @@ module ts {
}
}
function getNormalizedPathOrUrlComponents(pathOrUrl: string, getCurrentDirectory: ()=>string) {
function getNormalizedPathOrUrlComponents(pathOrUrl: string, getCurrentDirectory: () => string) {
if (isUrl(pathOrUrl)) {
return getNormalizedPathComponentsOfUrl(pathOrUrl);
}

View File

@@ -54,7 +54,6 @@ enum EmitReturnStatus {
EmitErrorsEncountered = 4 // Emitter errors occured during emitting process
}
module FourSlashInterface {
declare var FourSlash;