We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5ca623 commit 75c65e1Copy full SHA for 75c65e1
proplot/axes/plot.py
@@ -4335,13 +4335,13 @@ def _apply_wrappers(method, *args):
4335
if '{methods}' not in docstring:
4336
continue
4337
pkg = 'proplot' if local else 'matplotlib'
4338
- link = f'`~{pkg}.axes.Axes.{name}'
+ link = f'`~{pkg}.axes.Axes.{name}`'
4339
methods = func._methods_wrapped
4340
if link not in methods:
4341
methods.append(link)
4342
prefix = ', '.join(methods[:-1])
4343
modifier = ', and ' if len(methods) > 2 else ' and ' if len(methods) > 1 else ''
4344
- suffix = methods[-1] + '`.'
+ suffix = methods[-1] + '.'
4345
func.__doc__ = docstring.format(methods=prefix + modifier + suffix)
4346
4347
# Remove documentation
0 commit comments