From 33a58c8bcb31da9ceff069aaee923acb175f9f85 Mon Sep 17 00:00:00 2001 From: Carol Willing Date: Mon, 14 Mar 2016 11:45:17 -0700 Subject: [PATCH] Fix @nbollweg comments --- .../Distributing Jupyter Extensions as Python Packages.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/examples/Notebook/Distributing Jupyter Extensions as Python Packages.ipynb b/docs/source/examples/Notebook/Distributing Jupyter Extensions as Python Packages.ipynb index a2457a12e..3a004418e 100644 --- a/docs/source/examples/Notebook/Distributing Jupyter Extensions as Python Packages.ipynb +++ b/docs/source/examples/Notebook/Distributing Jupyter Extensions as Python Packages.ipynb @@ -83,7 +83,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "If a package also has nbextension with frontend assets that must be available (but not neccessarily enabled by default), install these assets with the following command:\n", + "If a package also has an nbextension with frontend assets that must be available (but not neccessarily enabled by default), install these assets with the following command:\n", "```shell\n", "jupyter nbextension install --py helpful_package --user # or --sys-prefix if using virtualenv or conda\n", "```" @@ -94,7 +94,7 @@ "metadata": {}, "source": [ "### Enable nbextension assets\n", - "If a package has extensions that are required in the browser but do not need user interaction to enable or set options, the following command can be used to enable:\n", + "If a package has assets that should be loaded every time a Jupyter app (e.g. lab, notebook, dashboard, terminal) is loaded in the browser, the following command can be used to enable the nbextension:\n", "```shell\n", "jupyter nbextension enable --py helpful_package --user # or --sys-prefix if using virtualenv or conda\n", "```"