Skip to content

Commit

Permalink
Spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
mjbvz committed Nov 10, 2021
1 parent ec1b940 commit aac257c
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ export class BackLayerWebView<T extends ICommonCellInfo> extends Disposable {
private readonly _onMessage = this._register(new Emitter<INotebookWebviewMessage>());
private readonly _preloadsCache = new Set<string>();
public readonly onMessage: Event<INotebookWebviewMessage> = this._onMessage.event;
private _initalized?: Promise<void>;
private _initialized?: Promise<void>;
private _disposed = false;
private _currentKernel?: INotebookKernel;

Expand Down Expand Up @@ -422,7 +422,7 @@ export class BackLayerWebView<T extends ICommonCellInfo> extends Disposable {
let coreDependencies = '';
let resolveFunc: () => void;

this._initalized = new Promise<void>((resolve, reject) => {
this._initialized = new Promise<void>((resolve) => {
resolveFunc = resolve;
});

Expand Down Expand Up @@ -471,7 +471,7 @@ var requirejs = (function() {
});
}

await this._initalized;
await this._initialized;
}

private _initialize(content: string) {
Expand Down

0 comments on commit aac257c

Please sign in to comment.