diff --git a/src/vs/workbench/parts/debug/common/debug.ts b/src/vs/workbench/parts/debug/common/debug.ts index 182aa4a25fc..becd865628c 100644 --- a/src/vs/workbench/parts/debug/common/debug.ts +++ b/src/vs/workbench/parts/debug/common/debug.ts @@ -395,7 +395,7 @@ export interface IConfigurationManager { * Returns the resolved configuration. * Replaces os specific values, system variables, interactive variables. */ - resloveConfiguration(config: IConfig): TPromise; + resolveConfiguration(config: IConfig): TPromise; /** * Returns a compound with the specified name. @@ -451,7 +451,7 @@ export interface IDebugService { getConfigurationManager(): IConfigurationManager; /** - * Sets the focused stack frame and evaluates all expresions against the newly focused stack frame, + * Sets the focused stack frame and evaluates all expressions against the newly focused stack frame, */ focusStackFrameAndEvaluate(focusedStackFrame: IStackFrame, process?: IProcess): TPromise; diff --git a/src/vs/workbench/parts/debug/electron-browser/debugConfigurationManager.ts b/src/vs/workbench/parts/debug/electron-browser/debugConfigurationManager.ts index 113db82a6ec..be87039d7be 100644 --- a/src/vs/workbench/parts/debug/electron-browser/debugConfigurationManager.ts +++ b/src/vs/workbench/parts/debug/electron-browser/debugConfigurationManager.ts @@ -314,7 +314,7 @@ export class ConfigurationManager implements IConfigurationManager { return config.configurations.filter(config => config && config.name === name).shift(); } - public resloveConfiguration(config: IConfig): TPromise { + public resolveConfiguration(config: IConfig): TPromise { if (!this.contextService.hasWorkspace()) { return TPromise.as(config); } diff --git a/src/vs/workbench/parts/debug/electron-browser/debugService.ts b/src/vs/workbench/parts/debug/electron-browser/debugService.ts index 88d59cd9fbc..a13c767903d 100644 --- a/src/vs/workbench/parts/debug/electron-browser/debugService.ts +++ b/src/vs/workbench/parts/debug/electron-browser/debugService.ts @@ -169,7 +169,7 @@ export class DebugService implements debug.IDebugService { } const config = this.configurationManager.getConfiguration(this.viewModel.selectedConfigurationName); - this.configurationManager.resloveConfiguration(config).done(resolvedConfig => { + this.configurationManager.resolveConfiguration(config).done(resolvedConfig => { resolvedConfig.request = 'attach'; resolvedConfig.port = broadcast.payload.port; this.doCreateProcess(resolvedConfig); @@ -677,7 +677,7 @@ export class DebugService implements debug.IDebugService { public createProcess(config: debug.IConfig): TPromise { return this.textFileService.saveAll().then(() => - this.configurationManager.resloveConfiguration(config).then(resolvedConfig => { + this.configurationManager.resolveConfiguration(config).then(resolvedConfig => { if (!resolvedConfig) { // User canceled resolving of interactive variables, silently return return undefined;