Skip to content

Commit 0eb11e8

Browse files
committed
align names, #105283
1 parent 21dd836 commit 0eb11e8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/vs/vscode.proposed.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1343,8 +1343,8 @@ declare module 'vscode' {
13431343

13441344
export interface NotebookEditorCellEdit {
13451345

1346-
replaceCells(from: number, to: number, cells: NotebookCellData[]): void;
1347-
replaceOutputs(index: number, outputs: CellOutput[]): void;
1346+
replaceCells(start: number, end: number, cells: NotebookCellData[]): void;
1347+
replaceOutput(index: number, outputs: CellOutput[]): void;
13481348
replaceMetadata(index: number, metadata: NotebookCellMetadata): void;
13491349

13501350
/** @deprecated */

src/vs/workbench/api/common/extHostNotebook.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -527,7 +527,7 @@ export class NotebookEditorCellEditBuilder implements vscode.NotebookEditorCellE
527527
});
528528
}
529529

530-
replaceOutputs(index: number, outputs: vscode.CellOutput[]): void {
530+
replaceOutput(index: number, outputs: vscode.CellOutput[]): void {
531531
this._throwIfFinalized();
532532
this._collectedEdits.push({
533533
editType: CellEditType.Output,

0 commit comments

Comments
 (0)