Skip to content

Commit 6cb712a

Browse files
committed
Fix broken links
1 parent 312f65e commit 6cb712a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/griffelib/src/griffelib/griffelib/_internal/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2539,7 +2539,7 @@ def resolve(self, name: str) -> str:
25392539
return f"{self.parent.path}({name})"
25402540

25412541
# Kind of a special case: we avoid resolving to instance-attributes from a function scope.
2542-
# See issue https://github.com/mkdocstrings/griffelib/issues/367.
2542+
# See issue https://github.com/mkdocstrings/griffe/issues/367.
25432543
resolved = super().resolve(name)
25442544
try:
25452545
obj = self.modules_collection.get_member(resolved)

tests/test_nodes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ def test_default_value_from_nodes(default: str) -> None:
233233
assert str(params[0].default) == default
234234

235235

236-
# https://github.com/mkdocstrings/griffelib/issues/159
236+
# https://github.com/mkdocstrings/griffe/issues/159
237237
def test_parsing_complex_string_annotations() -> None:
238238
"""Test parsing of complex, stringified annotations."""
239239
with temporary_visited_module(

tests/test_visitor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ def cached_prop(self) -> int:
290290
def test_forward_docstrings() -> None:
291291
"""Assert docstrings of class attributes are forwarded to instance assignments.
292292
293-
This is a regression test for https://github.com/mkdocstrings/griffelib/issues/128.
293+
This is a regression test for https://github.com/mkdocstrings/griffe/issues/128.
294294
"""
295295
with temporary_visited_module(
296296
'''

0 commit comments

Comments
 (0)