Skip to content

Commit

Permalink
feat: Use sections titles in SpaCy-styled docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
pawamoy committed Apr 30, 2022
1 parent 0822ff9 commit fe16b54
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
<table>
<thead>
<tr>
<th><b>ATTRIBUTE</b></th>
<th><b>{{ (section.title or "ATTRIBUTE").rstrip(":").upper() }}</b></th>
<th><b>DESCRIPTION</b></th>
</tr>
</thead>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
<table>
<thead>
<tr>
<th><b>PARAMETER</b></th>
<th><b>{{ (section.title or "PARAMETER").rstrip(":").upper() }}</b></th>
<th><b>DESCRIPTION</b></th>
</tr>
</thead>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
<table>
<thead>
<tr>
<th><b>PARAMETER</b></th>
<th><b>{{ (section.title or "PARAMETER").rstrip(":").upper() }}</b></th>
<th><b>DESCRIPTION</b></th>
</tr>
</thead>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
<table>
<thead>
<tr>
<th><b>RAISES</b></th>
<th><b>{{ (section.title or "RAISES").rstrip(":").upper() }}</b></th>
<th><b>DESCRIPTION</b></th>
</tr>
</thead>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
<table>
<thead>
<tr>
<th><b>RECEIVES</b></th>
<th><b>{{ (section.title or "RECEIVES").rstrip(":").upper() }}</b></th>
<th><b>DESCRIPTION</b></th>
</tr>
</thead>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
<table>
<thead>
<tr>
<th><b>RETURNS</b></th>
<th><b>{{ (section.title or "RETURNS").rstrip(":").upper() }}</b></th>
<th><b>DESCRIPTION</b></th>
</tr>
</thead>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
<table>
<thead>
<tr>
<th><b>WARNS</b></th>
<th><b>{{ (section.title or "WARNS").rstrip(":").upper() }}</b></th>
<th><b>DESCRIPTION</b></th>
</tr>
</thead>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
<table>
<thead>
<tr>
<th><b>YIELDS</b></th>
<th><b>{{ (section.title or "YIELDS").rstrip(":").upper() }}</b></th>
<th><b>DESCRIPTION</b></th>
</tr>
</thead>
Expand Down

0 comments on commit fe16b54

Please sign in to comment.