mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-05-21 18:22:58 -05:00
Minor spelling and spacing fix
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
@@ -54,7 +54,6 @@ enum EmitReturnStatus {
|
||||
EmitErrorsEncountered = 4 // Emitter errors occured during emitting process
|
||||
}
|
||||
|
||||
|
||||
module FourSlashInterface {
|
||||
declare var FourSlash;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user