From 58bd8e075a3a5e80719da76ff256352c4bc91e74 Mon Sep 17 00:00:00 2001 From: Matt Bierner Date: Tue, 9 Mar 2021 12:27:43 -0800 Subject: [PATCH] Fix spelling in comment --- .../contrib/notebook/browser/viewModel/notebookViewModel.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/contrib/notebook/browser/viewModel/notebookViewModel.ts b/src/vs/workbench/contrib/notebook/browser/viewModel/notebookViewModel.ts index b9cf9f594ec..7b903a74d90 100644 --- a/src/vs/workbench/contrib/notebook/browser/viewModel/notebookViewModel.ts +++ b/src/vs/workbench/contrib/notebook/browser/viewModel/notebookViewModel.ts @@ -249,7 +249,7 @@ export class NotebookViewModel extends Disposable implements EditorFoldingStateD this._decorationsTree.acceptReplace(diff[0], diff[1], diff[2].length, true); deletedCells.forEach(cell => { this._handleToViewCellMapping.delete(cell.handle); - // dispsoe the cell to release ref to the cell text document + // dispose the cell to release ref to the cell text document cell.dispose(); });