Skip to content

Commit 4c1cf0a

Browse files
authored
Merge pull request #1300 from xxd3vin/patch-1
Fix typo
2 parents 6dbca19 + f26d281 commit 4c1cf0a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/js/cell-edit/cell-edit-hook-table.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ function onAfterSaveCell(row, cellName, cellValue) {
3030
rowStr += prop + ': ' + row[prop] + '\n';
3131
}
3232

33-
alert('Thw whole row :\n' + rowStr);
33+
alert('The whole row :\n' + rowStr);
3434
}
3535

3636
function onBeforeSaveCell(row, cellName, cellValue) {

examples/js/complex/app.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ function onSelectAll(isSelected) {
3838

3939
function onAfterSaveCell(row, cellName, cellValue) {
4040
console.log(`Save cell ${cellName} with value ${cellValue}`);
41-
console.log('Thw whole row :');
41+
console.log('The whole row :');
4242
console.log(row);
4343
}
4444

0 commit comments

Comments
 (0)