diff --git a/IPython/html/static/notebook/js/quickhelp.js b/IPython/html/static/notebook/js/quickhelp.js index bceaa2db1..cfa520f12 100644 --- a/IPython/html/static/notebook/js/quickhelp.js +++ b/IPython/html/static/notebook/js/quickhelp.js @@ -38,8 +38,8 @@ define([ { shortcut: "Cmd-Down", help:"go to cell end" }, { shortcut: "Alt-Left", help:"go one word left" }, { shortcut: "Alt-Right", help:"go one word right" }, - { shortcut: "Alt-Backspace", help:"del word before" }, - { shortcut: "Alt-Delete", help:"del word after" }, + { shortcut: "Alt-Backspace", help:"delete word to the left" }, + { shortcut: "Alt-Delete", help:"delete word to the right" }, ]; } else { // PC specific @@ -50,8 +50,8 @@ define([ { shortcut: "Ctrl-Down", help:"go to cell end" }, { shortcut: "Ctrl-Left", help:"go one word left" }, { shortcut: "Ctrl-Right", help:"go one word right" }, - { shortcut: "Ctrl-Backspace", help:"del word before" }, - { shortcut: "Ctrl-Delete", help:"del word after" }, + { shortcut: "Ctrl-Backspace", help:"delete word to the left" }, + { shortcut: "Ctrl-Delete", help:"delete word to the right" }, ]; }