File tree Expand file tree Collapse file tree
src/vs/workbench/services/configuration/node Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -322,7 +322,7 @@ export class WorkspaceService extends Disposable implements IWorkspaceConfigurat
322322
323323 private createWorkspace ( arg : IWorkspaceIdentifier | URI | IWindowConfiguration ) : Promise < Workspace > {
324324 if ( isWorkspaceIdentifier ( arg ) ) {
325- return this . createMulitFolderWorkspace ( arg ) ;
325+ return this . createMultiFolderWorkspace ( arg ) ;
326326 }
327327
328328 if ( isSingleFolderWorkspaceIdentifier ( arg ) ) {
@@ -332,7 +332,7 @@ export class WorkspaceService extends Disposable implements IWorkspaceConfigurat
332332 return this . createEmptyWorkspace ( arg ) ;
333333 }
334334
335- private createMulitFolderWorkspace ( workspaceIdentifier : IWorkspaceIdentifier ) : Promise < Workspace > {
335+ private createMultiFolderWorkspace ( workspaceIdentifier : IWorkspaceIdentifier ) : Promise < Workspace > {
336336 const workspaceConfigPath = URI . file ( workspaceIdentifier . configPath ) ;
337337 return this . workspaceConfiguration . load ( workspaceConfigPath )
338338 . then ( ( ) => {
You can’t perform that action at this time.
0 commit comments