From 088987adbed8b9ba09a89d78c5e4cacdb85f70b5 Mon Sep 17 00:00:00 2001 From: Susan Tan Date: Thu, 12 Dec 2013 23:30:39 -0800 Subject: [PATCH] Fixed various typos in docstrings. --- IPython/html/static/notebook/js/completer.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/IPython/html/static/notebook/js/completer.js b/IPython/html/static/notebook/js/completer.js index 3d9631c15..cfb2e90fd 100644 --- a/IPython/html/static/notebook/js/completer.js +++ b/IPython/html/static/notebook/js/completer.js @@ -1,11 +1,11 @@ // function completer. // -// completer should be a class that take an cell instance +// completer should be a class that takes an cell instance var IPython = (function (IPython) { // that will prevent us from misspelling "use strict"; - // easyier key mapping + // easier key mapping var key = IPython.utils.keycodes; function prepend_n_prc(str, n) { @@ -114,7 +114,7 @@ var IPython = (function (IPython) { * shared start **/ Completer.prototype.carry_on_completion = function (first_invocation) { - // Pass true as parameter if you want the commpleter to autopick when + // Pass true as parameter if you want the completer to autopick when // only one completion. This function is automatically reinvoked at // each keystroke with first_invocation = false var cur = this.editor.getCursor();