summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorJordan Wiens <jordan@psifertex.com>2025-07-02 17:09:15 -0400
committerJordan Wiens <jordan@psifertex.com>2025-07-02 17:09:26 -0400
commitec48dcb4ac80d947aeba18b72b1a12697b50abec (patch)
tree3a7a28b8011a74567d4a94ae8283c912e9b66e19 /python
parentec0d4308171b4fd67242e084eceede31c33a9d08 (diff)
cannot use the same keyword for RST links
Diffstat (limited to 'python')
-rw-r--r--python/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/__init__.py b/python/__init__.py
index 6ed898f4..2e6857f9 100644
--- a/python/__init__.py
+++ b/python/__init__.py
@@ -431,7 +431,7 @@ def connect_pycharm_debugger(port=5678):
"""
Connect to PyCharm (Professional Edition) for debugging.
- .. note:: See the `user documentation <https://docs.binary.ninja/dev/plugins.html#remote-debugging-with-intellij-pycharm>`_ for step-by-step instructions on how to set up Python debugging.
+ .. note:: See the user documentation `pycharm note <https://docs.binary.ninja/dev/plugins.html#remote-debugging-with-intellij-pycharm>`_ for step-by-step instructions on how to set up Python debugging.
:param port: Port number for connecting to the debugger.
"""
@@ -447,7 +447,7 @@ def connect_vscode_debugger(port=5678):
Connect to Visual Studio Code for debugging. This function blocks until the debugger
is connected! Not recommended for use in startup.py
- .. note:: See the `user documentation <https://docs.binary.ninja/dev/plugins.html#remote-debugging-with-vscode>`_ for step-by-step instructions on how to set up Python debugging.
+ .. note:: See the user documentation `vscode note <https://docs.binary.ninja/dev/plugins.html#remote-debugging-with-vscode>`_ for step-by-step instructions on how to set up Python debugging.
:param port: Port number for connecting to the debugger.
"""