summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorXusheng <xusheng@vector35.com>2023-01-10 18:35:54 +0800
committerXusheng <xusheng@vector35.com>2023-01-10 18:35:54 +0800
commitc14db13ccfedf2e4f5e1fed02bd2217bebe7f1e2 (patch)
tree4cf85ce4b53b9e175c191a2a72a458f9296dad15 /docs
parentda6e583784879f845bc5d80861b695bb899557bf (diff)
Fix debugger Python docs generation
Diffstat (limited to 'docs')
-rw-r--r--docs/guide/debugger.md5
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/guide/debugger.md b/docs/guide/debugger.md
index c602c87d..e2593c42 100644
--- a/docs/guide/debugger.md
+++ b/docs/guide/debugger.md
@@ -220,9 +220,10 @@ Right now, the Debugger BinaryView is discarded once the target exits. It cannot
## API
-The debugger exposes its functionality in both the Python and C++ APIs. The Python documentation can be accessed [online](https://api.binary.ninja/binaryninja.debugger.debuggercontroller-module.html).
+The debugger exposes its functionality in both the Python and C++ APIs. The Python documentation can be accessed online, for [stable](https://api.binary.ninja/binaryninja.debugger.debuggercontroller-module.html)
+and [dev](https://dev-api.binary.ninja/binaryninja.debugger.debuggercontroller-module.html) version.
-The API is centered around the [`DebuggerController`](https://api.binary.ninja/binaryninja.debugger.debuggercontroller-module.html#binaryninja.debugger.debuggercontroller.DebuggerController) class, which provides all functionalities of the debugger. There is no need to directly access the `DebugAdapter` classes.
+The API is centered around the [`DebuggerController`](https://dev-api.binary.ninja/binaryninja.debugger.debuggercontroller-module.html#binaryninja.debugger.debuggercontroller.DebuggerController) class, which provides all functionalities of the debugger. There is no need to directly access the `DebugAdapter` classes.
When the debugger is used within the UI, the `dbg` magic variable is injected into the Python interpreter. It always represents the debugger for the currently active Binary View. You can think of it as being created by