Skip to content

Commit f507dea

Browse files
committed
fix(renderer): alias in signature fully resolves target
1 parent 9d8f53f commit f507dea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

quartodoc/renderers/md_renderer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ def signature(self, el: layout.Doc):
163163
@dispatch
164164
def signature(self, el: dc.Alias, source: Optional[dc.Alias] = None):
165165
"""Return a string representation of an object's signature."""
166-
return self.signature(el.target, el)
166+
return self.signature(el.final_target, el)
167167

168168
@dispatch
169169
def signature(

0 commit comments

Comments
 (0)