Skip to content

Commit

Permalink
Fix inline external link syntax in docstrings
Browse files Browse the repository at this point in the history
The URL must be surrounded by < > characters.
  • Loading branch information
wence- authored Sep 20, 2023
1 parent 9906cd6 commit 5e63c48
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions python/rmm/_lib/logger.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ cdef extern from "spdlog/common.h" namespace "spdlog::level" nogil:
The debug logging level for RMM.
Debug logging prints messages to a log file. See
`Debug Logging https://github.com/rapidsai/rmm#debug-logging`_
`Debug Logging <https://github.com/rapidsai/rmm#debug-logging>`_
for more information.
Valid levels, in decreasing order of verbosity, are TRACE, DEBUG,
Expand Down Expand Up @@ -83,7 +83,7 @@ def should_log(level):
If these conditions are not both met, this function will return false.
Debug logging prints messages to a log file. See
`Debug Logging https://github.com/rapidsai/rmm#debug-logging`_
`Debug Logging <https://github.com/rapidsai/rmm#debug-logging>`_
for more information.
Parameters
Expand Down Expand Up @@ -111,7 +111,7 @@ def set_logging_level(level):
Set the debug logging level.
Debug logging prints messages to a log file. See
`Debug Logging https://github.com/rapidsai/rmm#debug-logging`_
`Debug Logging <https://github.com/rapidsai/rmm#debug-logging>`_
for more information.
Parameters
Expand Down Expand Up @@ -148,7 +148,7 @@ def get_logging_level():
Get the current debug logging level.
Debug logging prints messages to a log file. See
`Debug Logging https://github.com/rapidsai/rmm#debug-logging`_
`Debug Logging <https://github.com/rapidsai/rmm#debug-logging>`_
for more information.
Returns
Expand Down Expand Up @@ -176,7 +176,7 @@ def flush_logger():
be written to the log file.
Debug logging prints messages to a log file. See
`Debug Logging https://github.com/rapidsai/rmm#debug-logging`_
`Debug Logging <https://github.com/rapidsai/rmm#debug-logging>`_
for more information.
See Also
Expand All @@ -198,7 +198,7 @@ def set_flush_level(level):
will automatically flush to the file.
Debug logging prints messages to a log file. See
`Debug Logging https://github.com/rapidsai/rmm#debug-logging`_
`Debug Logging <https://github.com/rapidsai/rmm#debug-logging>`_
for more information.
Parameters
Expand Down Expand Up @@ -237,7 +237,7 @@ def get_flush_level():
this level or higher will automatically flush to the file.
Debug logging prints messages to a log file. See
`Debug Logging https://github.com/rapidsai/rmm#debug-logging`_
`Debug Logging <https://github.com/rapidsai/rmm#debug-logging>`_
for more information.
Returns
Expand Down

0 comments on commit 5e63c48

Please sign in to comment.