diff --git a/monaco-editor/website/playground/new-samples/interacting-with-the-editor/adding-an-action-to-an-editor-instance/sample.js b/monaco-editor/website/playground/new-samples/interacting-with-the-editor/adding-an-action-to-an-editor-instance/sample.js index 0e2e64c5a7..f224ba04d9 100644 --- a/monaco-editor/website/playground/new-samples/interacting-with-the-editor/adding-an-action-to-an-editor-instance/sample.js +++ b/monaco-editor/website/playground/new-samples/interacting-with-the-editor/adding-an-action-to-an-editor-instance/sample.js @@ -48,6 +48,5 @@ editor.addAction({ // @param editor The editor instance is passed in as a convenience run: function (ed) { alert("i'm running => " + ed.getPosition()); - return null; } });