Skip to content

Commit 16fc9bc

Browse files
committed
Bug fix
1 parent 7a15d3a commit 16fc9bc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

nbdev/showdoc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ def _repr_html_(self):
225225
doc += f'<blockquote><pre><code>{self.nm} {sig}</code></pre></blockquote>'
226226
if self.docs:
227227
doc += f"<p><i>{self.docs}</i></p>"
228-
if src: doc += f"<br/>{_html_link(src, "source")}"
228+
if src: doc += f"<br/>{_html_link(src, 'source')}"
229229
if self.dm.has_docment: doc += _create_html_table(str(self.dm))
230230
return doc
231231

nbs/api/08_showdoc.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1013,7 +1013,7 @@
10131013
" doc += f'<blockquote><pre><code>{self.nm} {sig}</code></pre></blockquote>'\n",
10141014
" if self.docs:\n",
10151015
" doc += f\"<p><i>{self.docs}</i></p>\"\n",
1016-
" if src: doc += f\"<br/>{_html_link(src, \"source\")}\"\n",
1016+
" if src: doc += f\"<br/>{_html_link(src, 'source')}\"\n",
10171017
" if self.dm.has_docment: doc += _create_html_table(str(self.dm))\n",
10181018
" return doc\n",
10191019
"\n",

0 commit comments

Comments
 (0)