Skip to content

Commit ef67afc

Browse files
996216: Updated corrections
1 parent fb7e061 commit ef67afc

File tree

2 files changed

+2
-2
lines changed
  • Document-Processing/code-snippet/spreadsheet/javascript-es6/note-cs3

2 files changed

+2
-2
lines changed

Document-Processing/code-snippet/spreadsheet/javascript-es6/note-cs3/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ var spreadsheet = new ej.spreadsheet.Spreadsheet({
8383
saveUrl: 'https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/save',
8484
created: function () {
8585
spreadsheet.cellFormat({ fontWeight: 'bold' }, 'A1:C1');
86-
spreadsheet.updateCell({ notes: { text: 'This website is best for buying sports shoes.' } }, 'C3:C3')
86+
spreadsheet.updateCell({ notes: { text: 'This website is best for buying sports shoes.' } }, 'C3:C3');
8787
}
8888
});
8989
spreadsheet.appendTo('#spreadsheet');

Document-Processing/code-snippet/spreadsheet/javascript-es6/note-cs3/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ let spreadsheet: Spreadsheet = new Spreadsheet({
8686
saveUrl: 'https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/save',
8787
created: function (): void {
8888
spreadsheet.cellFormat({ fontWeight: 'bold' }, 'A1:C1');
89-
spreadsheet.updateCell({ notes: { text: 'This website is best for buying sports shoes.' } }, 'C3:C3')
89+
spreadsheet.updateCell({ notes: { text: 'This website is best for buying sports shoes.' } }, 'C3:C3');
9090
}
9191
});
9292
spreadsheet.appendTo('#spreadsheet');

0 commit comments

Comments
 (0)