Skip to content

Commit 75c65e1

Browse files
committed
Fix broken wrapper links (really)
1 parent f5ca623 commit 75c65e1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

proplot/axes/plot.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4335,13 +4335,13 @@ def _apply_wrappers(method, *args):
43354335
if '{methods}' not in docstring:
43364336
continue
43374337
pkg = 'proplot' if local else 'matplotlib'
4338-
link = f'`~{pkg}.axes.Axes.{name}'
4338+
link = f'`~{pkg}.axes.Axes.{name}`'
43394339
methods = func._methods_wrapped
43404340
if link not in methods:
43414341
methods.append(link)
43424342
prefix = ', '.join(methods[:-1])
43434343
modifier = ', and ' if len(methods) > 2 else ' and ' if len(methods) > 1 else ''
4344-
suffix = methods[-1] + '`.'
4344+
suffix = methods[-1] + '.'
43454345
func.__doc__ = docstring.format(methods=prefix + modifier + suffix)
43464346

43474347
# Remove documentation

0 commit comments

Comments
 (0)