Skip to content

Commit a02f1bb

Browse files
committed
docs: Fix cross-refs
1 parent 7d09f9a commit a02f1bb

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/mkdocstrings_handlers/typescript/handler.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,8 @@ def __init__(self, *args: Any, **kwargs: Any) -> None:
9898
"""Initialize the handler.
9999
100100
Parameters:
101-
*args: Passed to the [base handler][mkdocstrings.handlers.base.BaseHandler].
102-
**kwargs: Passed to the [base handler][mkdocstrings.handlers.base.BaseHandler].
101+
*args: Passed to the [base handler][mkdocstrings.BaseHandler].
102+
**kwargs: Passed to the [base handler][mkdocstrings.BaseHandler].
103103
"""
104104
kwargs.pop("config_file_path", None)
105105
super().__init__(*args, **kwargs)
@@ -195,7 +195,7 @@ def update_env(self, md: Markdown, config: dict) -> None:
195195
Parameters:
196196
md: The Markdown instance. Useful to add functions able to convert Markdown into the environment filters.
197197
config: Configuration options for `mkdocs` and `mkdocstrings`, read from `mkdocs.yml`. See the source code
198-
of [mkdocstrings.plugin.MkdocstringsPlugin.on_config][] to see what's in this dictionary.
198+
of [mkdocstrings.MkdocstringsPlugin.on_config][] to see what's in this dictionary.
199199
"""
200200
super().update_env(md, config) # Add some mkdocstrings default filters such as highlight and convert_markdown
201201
self.env.trim_blocks = True

0 commit comments

Comments
 (0)