From 43c82a2b80914fad577cec423ff94ab3fe5e0624 Mon Sep 17 00:00:00 2001 From: Brian Granger Date: Wed, 18 Jan 2012 12:47:53 -0800 Subject: [PATCH] Fixing minor typo in menubar.js. --- IPython/frontend/html/notebook/static/js/menubar.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IPython/frontend/html/notebook/static/js/menubar.js b/IPython/frontend/html/notebook/static/js/menubar.js index 36013ecf5..a38cbcbd8 100644 --- a/IPython/frontend/html/notebook/static/js/menubar.js +++ b/IPython/frontend/html/notebook/static/js/menubar.js @@ -24,7 +24,7 @@ var IPython = (function (IPython) { MenuBar.prototype.style = function () { $('ul#menus').menubar({ select : function (event, ui) { - // The selected cell looses focus when the menu is entered, so we + // The selected cell loses focus when the menu is entered, so we // re-select it upon selection. var i = IPython.notebook.selected_index(); IPython.notebook.select(i);