From 4ac11583bab00fb94919b70bbb7547105155f260 Mon Sep 17 00:00:00 2001 From: blueloveTH Date: Tue, 9 Sep 2025 19:16:09 +0800 Subject: [PATCH] Update debugging.md --- docs/features/debugging.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/features/debugging.md b/docs/features/debugging.md index 2bac8f62..34ee807e 100644 --- a/docs/features/debugging.md +++ b/docs/features/debugging.md @@ -30,7 +30,7 @@ pocketpy provides a C-API `py_debugger_waitforattach`, which starts a debug server and waits for the VSCode extension to attach. When the debugger is attached, the program will continue to run. -+ If you are using pocketpy's standalone executable `main.exe`, you can pass `--debug` flag to it. This will automatically call `py_debugger_waitforattach("localhost", 6110)` before running your program. ++ If you are using pocketpy's standalone executable `main.exe`, you can pass `--debug` flag to it. This will automatically call `py_debugger_waitforattach("127.0.0.1", 6110)` before running your program. + If you are embedding pocketpy as a library, you need to call `py_debugger_waitforattach` manually in your C/C++ code. ## Configuration