Skip to content

Commit 0af6fb6

Browse files
committed
Fix documentation linking
Signed-off-by: Carmen Bianca BAKKER <[email protected]>
1 parent d05a806 commit 0af6fb6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/reuse/exceptions.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class SpdxIdentifierNotFoundError(ReuseError):
1919

2020
class GlobalLicensingParseError(ReuseError):
2121
"""An exception representing any kind of error that occurs when trying to
22-
parse a :class:`GlobalLicensing` file.
22+
parse a :class:`reuse.global_licensing.GlobalLicensing` file.
2323
"""
2424

2525
def __init__(self, *args: Any, source: Optional[str] = None):
@@ -29,13 +29,13 @@ def __init__(self, *args: Any, source: Optional[str] = None):
2929

3030
class GlobalLicensingParseTypeError(GlobalLicensingParseError, TypeError):
3131
"""An exception representing a type error while trying to parse a
32-
:class:`GlobalLicensing` file.
32+
:class:`reuse.global_licensing.GlobalLicensing` file.
3333
"""
3434

3535

3636
class GlobalLicensingParseValueError(GlobalLicensingParseError, ValueError):
3737
"""An exception representing a value error while trying to parse a
38-
:class:`GlobalLicensing` file.
38+
:class:`reuse.global_licensing.GlobalLicensing` file.
3939
"""
4040

4141

0 commit comments

Comments
 (0)