mirror of
https://github.com/jupyter/notebook.git
synced 2024-12-21 04:10:17 +08:00
Merge pull request #4688 from onceuponatimeforever/fixed-typos
Fixed various typos in docstrings.
This commit is contained in:
commit
f541b7d8ef
@ -1,11 +1,11 @@
|
|||||||
// function completer.
|
// 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) {
|
var IPython = (function (IPython) {
|
||||||
// that will prevent us from misspelling
|
// that will prevent us from misspelling
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
// easyier key mapping
|
// easier key mapping
|
||||||
var key = IPython.utils.keycodes;
|
var key = IPython.utils.keycodes;
|
||||||
|
|
||||||
function prepend_n_prc(str, n) {
|
function prepend_n_prc(str, n) {
|
||||||
@ -114,7 +114,7 @@ var IPython = (function (IPython) {
|
|||||||
* shared start
|
* shared start
|
||||||
**/
|
**/
|
||||||
Completer.prototype.carry_on_completion = function (first_invocation) {
|
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
|
// only one completion. This function is automatically reinvoked at
|
||||||
// each keystroke with first_invocation = false
|
// each keystroke with first_invocation = false
|
||||||
var cur = this.editor.getCursor();
|
var cur = this.editor.getCursor();
|
||||||
|
Loading…
Reference in New Issue
Block a user