Skip to content

Commit 087ac5f

Browse files
Fix typo (#208)
* Fix typo * Again
1 parent b9b5c7d commit 087ac5f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/source/developers/extensions.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ The basic structure of an ExtensionApp is shown below:
148148
# Change the jinja templating environment
149149
150150
151-
The ``ExtensionApp`` uses the following methods and properties to connect your extension to the Jupyter server. You do no need to define a ``_load_jupyter_server_extension`` function for these apps. Instead, overwrite the pieces below to add your custom settings, handlers and templates:
151+
The ``ExtensionApp`` uses the following methods and properties to connect your extension to the Jupyter server. You do not need to define a ``_load_jupyter_server_extension`` function for these apps. Instead, overwrite the pieces below to add your custom settings, handlers and templates:
152152

153153
Methods
154154

@@ -194,7 +194,7 @@ Jinja templating from frontend extensions
194194

195195
Many Jupyter frontend applications use Jinja for basic HTML templating. Since this is common enough, Jupyter Server provides some extra mixin that integrate Jinja with Jupyter server extensions.
196196

197-
Use ``ExtensionAppJinjaMixin`` to automatically add a Jinja templating environment to an ``ExtensionApp``. This adds a ``<extension_name>_jinja2_env`` setting to Tornado Web Server's settings that be be used by request handlers.
197+
Use ``ExtensionAppJinjaMixin`` to automatically add a Jinja templating environment to an ``ExtensionApp``. This adds a ``<extension_name>_jinja2_env`` setting to Tornado Web Server's settings that will be used by request handlers.
198198

199199
.. code-block:: python
200200
@@ -375,4 +375,4 @@ You can check some simple example on the `GitHub jupyter_server repository
375375

376376
.. links
377377
378-
.. _`Jupyter's paths`: https://jupyter.readthedocs.io/en/latest/projects/jupyter-directories.html
378+
.. _`Jupyter's paths`: https://jupyter.readthedocs.io/en/latest/projects/jupyter-directories.html

0 commit comments

Comments
 (0)