Skip to content

Commit

Permalink
comment typo fix (#1425)
Browse files Browse the repository at this point in the history
* comment typo fix

* typo fix
  • Loading branch information
akhmerov authored Sep 24, 2020
1 parent 30bcf03 commit 8809e7c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions share/jupyter/nbconvert/templates/base/null.j2
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@ To layout the different blocks of a notebook.
Subtemplates can override blocks to define their custom representation.
If one of the block you do overwrite is not a leave block, consider
If one of the block you do overwrite is not a leaf block, consider
calling super.
{%- block nonLeaveBlock -%}
{%- block nonLeafBlock -%}
#add stuff at beginning
{{ super() }}
#add stuff at end
{%- endblock nonLeaveBlock -%}
{%- endblock nonLeafBlock -%}
consider calling super even if it is a leave block, we might insert more blocks later.
consider calling super even if it is a leaf block, we might insert more blocks later.
#}
{%- block header -%}
Expand Down
8 changes: 4 additions & 4 deletions share/jupyter/nbconvert/templates/latex/null.j2
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@ To layout the different blocks of a notebook.

Subtemplates can override blocks to define their custom representation.

If one of the block you do overwrite is not a leave block, consider
If one of the block you do overwrite is not a leaf block, consider
calling super.

((*- block nonLeaveBlock -*))
((*- block nonLeafBlock -*))
#add stuff at beginning
((( super() )))
#add stuff at end
((*- endblock nonLeaveBlock -*))
((*- endblock nonLeafBlock -*))

consider calling super even if it is a leave block, we might insert more blocks later.
consider calling super even if it is a leaf block, we might insert more blocks later.

=))
((*- block header -*))
Expand Down

0 comments on commit 8809e7c

Please sign in to comment.