diff --git a/src/vs/workbench/services/configuration/node/configurationService.ts b/src/vs/workbench/services/configuration/node/configurationService.ts index 302ba8a2a2271a063723f2d4c29432ae2f0380e9..ea48e1b4e4af670c6884ea8652e0fc43c675c4e2 100644 --- a/src/vs/workbench/services/configuration/node/configurationService.ts +++ b/src/vs/workbench/services/configuration/node/configurationService.ts @@ -322,7 +322,7 @@ export class WorkspaceService extends Disposable implements IWorkspaceConfigurat private createWorkspace(arg: IWorkspaceIdentifier | URI | IWindowConfiguration): Promise { if (isWorkspaceIdentifier(arg)) { - return this.createMulitFolderWorkspace(arg); + return this.createMultiFolderWorkspace(arg); } if (isSingleFolderWorkspaceIdentifier(arg)) { @@ -332,7 +332,7 @@ export class WorkspaceService extends Disposable implements IWorkspaceConfigurat return this.createEmptyWorkspace(arg); } - private createMulitFolderWorkspace(workspaceIdentifier: IWorkspaceIdentifier): Promise { + private createMultiFolderWorkspace(workspaceIdentifier: IWorkspaceIdentifier): Promise { const workspaceConfigPath = URI.file(workspaceIdentifier.configPath); return this.workspaceConfiguration.load(workspaceConfigPath) .then(() => {