diff --git a/src/vs/editor/contrib/find/simpleFindWidget.ts b/src/vs/editor/contrib/find/simpleFindWidget.ts index 88727a5dc7369ca22527baa5afeaa6a899a4d3b7..33524fc9d8b7a9926e66b905fe5cf293e19b5c0c 100644 --- a/src/vs/editor/contrib/find/simpleFindWidget.ts +++ b/src/vs/editor/contrib/find/simpleFindWidget.ts @@ -149,7 +149,7 @@ export abstract class SimpleFindWidget extends Widget { this._findInput.style(inputStyles); } - dipose() { + dispose() { super.dispose(); if (this._domNode && this._domNode.parentElement) { diff --git a/src/vs/workbench/parts/html/electron-browser/htmlPreviewPart.ts b/src/vs/workbench/parts/html/electron-browser/htmlPreviewPart.ts index 0ef12747bb53fc14157b3aa90893045f178a302b..b04b196b2fe72b44fe1bbb28f64a00b902c5c3e3 100644 --- a/src/vs/workbench/parts/html/electron-browser/htmlPreviewPart.ts +++ b/src/vs/workbench/parts/html/electron-browser/htmlPreviewPart.ts @@ -73,7 +73,7 @@ export class HtmlPreviewPart extends BaseWebviewEditor { this._themeChangeSubscription.dispose(); this._modelChangeSubscription.dispose(); - // dipose model ref + // dispose model ref dispose(this._modelRef); super.dispose(); }