Skip to content

Commit c097387

Browse files
PHaeJintakluyver
authored andcommitted
Fix a typo (#3043)
* Fix a typo * Fix a typo * Fix abroken link
1 parent 1deb0ae commit c097387

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docs/source/extending/keymaps.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Customize keymaps
77
which is not guaranteed to be kept in future versions of the notebook,
88
and can be removed or changed without warnings.
99

10-
The notebook shortcuts that are defined by jupyter both in edit mode an command
10+
The notebook shortcuts that are defined by jupyter both in edit mode and command
1111
mode are configurable in the frontend configuration file
1212
``~/.jupyter/nbconfig/notebook.json``. The modification of Keyboard shortcut
1313
suffer of several limitations, mainly that your Browser and OS might prevent

notebook/serverextensions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -283,8 +283,8 @@ class ServerExtensionApp(BaseExtensionApp):
283283
examples = _examples
284284

285285
subcommands = dict(
286-
enable=(EnableServerExtensionApp, "Enable an server extension"),
287-
disable=(DisableServerExtensionApp, "Disable an server extension"),
286+
enable=(EnableServerExtensionApp, "Enable a server extension"),
287+
disable=(DisableServerExtensionApp, "Disable a server extension"),
288288
list=(ListServerExtensionsApp, "List server extensions")
289289
)
290290

notebook/static/tree/js/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ require([
196196
e.preventDefault();
197197

198198
// Set the hash without causing the page to jump.
199-
// http://stackoverflow.com/a/14690177/2824256
199+
// https://stackoverflow.com/a/14690177/2824256
200200
var hash = $(this).attr("href");
201201
if(window.history.pushState) {
202202
window.history.pushState(null, null, hash);

0 commit comments

Comments
 (0)