diff --git a/examples/js/cell-edit/cell-edit-hook-table.js b/examples/js/cell-edit/cell-edit-hook-table.js index 1b27c3c69..d07d6fa36 100644 --- a/examples/js/cell-edit/cell-edit-hook-table.js +++ b/examples/js/cell-edit/cell-edit-hook-table.js @@ -30,7 +30,7 @@ function onAfterSaveCell(row, cellName, cellValue) { rowStr += prop + ': ' + row[prop] + '\n'; } - alert('Thw whole row :\n' + rowStr); + alert('The whole row :\n' + rowStr); } function onBeforeSaveCell(row, cellName, cellValue) { diff --git a/examples/js/complex/app.js b/examples/js/complex/app.js index c8519c3aa..4a0bdd39c 100644 --- a/examples/js/complex/app.js +++ b/examples/js/complex/app.js @@ -38,7 +38,7 @@ function onSelectAll(isSelected) { function onAfterSaveCell(row, cellName, cellValue) { console.log(`Save cell ${cellName} with value ${cellValue}`); - console.log('Thw whole row :'); + console.log('The whole row :'); console.log(row); }