Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jrieken committed May 19, 2019
1 parent cc73af2 commit a5536b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/vs/editor/common/services/editorWorkerServiceImpl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ class EditorModelManager extends Disposable {
super.dispose();
}

public esureSyncedResources(resources: URI[]): void {
public ensureSyncedResources(resources: URI[]): void {
for (const resource of resources) {
let resourceStr = resource.toString();

Expand Down Expand Up @@ -387,7 +387,7 @@ export class EditorWorkerClient extends Disposable {

protected _withSyncedResources(resources: URI[]): Promise<EditorSimpleWorkerImpl> {
return this._getProxy().then((proxy) => {
this._getOrCreateModelManager(proxy).esureSyncedResources(resources);
this._getOrCreateModelManager(proxy).ensureSyncedResources(resources);
return proxy;
});
}
Expand Down

0 comments on commit a5536b8

Please sign in to comment.