From b4973c826c09a26633f2ceaec016dc93a830c5ab Mon Sep 17 00:00:00 2001 From: Sartaj Singh Baveja Date: Wed, 6 Mar 2019 06:28:41 -0800 Subject: [PATCH] Minor update to docs (#841) --- docs/cell-edit.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/cell-edit.md b/docs/cell-edit.md index cc56f6c..e1b4ab5 100644 --- a/docs/cell-edit.md +++ b/docs/cell-edit.md @@ -69,7 +69,7 @@ const cellEdit: { // omit... beforeSaveCell(oldValue, newValue, row, column, done) { setTimeout(() => { - if (confirm('Do you want to accep this change?')) { + if (confirm('Do you want to accept this change?')) { done(); // contine to save the changes } else { done(false); // reject the changes