From 6d5a0612907edc5dfde4f2dff2b912a5a6db70f4 Mon Sep 17 00:00:00 2001 From: Andras Gemes Date: Mon, 7 Apr 2025 13:55:11 +0200 Subject: [PATCH] Debugger: fix description of `step_into` --- .../Debugger-agent-lldb/src/main/py/src/ghidralldb/methods.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ghidra/Debug/Debugger-agent-lldb/src/main/py/src/ghidralldb/methods.py b/Ghidra/Debug/Debugger-agent-lldb/src/main/py/src/ghidralldb/methods.py index f43090b632..baffe62583 100644 --- a/Ghidra/Debug/Debugger-agent-lldb/src/main/py/src/ghidralldb/methods.py +++ b/Ghidra/Debug/Debugger-agent-lldb/src/main/py/src/ghidralldb/methods.py @@ -522,7 +522,7 @@ def interrupt(process: Process): @REGISTRY.method(action='step_into') def step_into(thread: Thread, n: Annotated[int, ParamDesc(display='N')] = 1) -> None: - """Step on instruction exactly.""" + """Step one instruction exactly.""" t = find_thread_by_obj(thread) t.process.SetSelectedThread(t) exec_convert_errors('thread step-inst')