Skip to content

Commit 6d5a061

Browse files
authored
Debugger: fix description of step_into
1 parent 8441563 commit 6d5a061

File tree

1 file changed

+1
-1
lines changed
  • Ghidra/Debug/Debugger-agent-lldb/src/main/py/src/ghidralldb

1 file changed

+1
-1
lines changed

Ghidra/Debug/Debugger-agent-lldb/src/main/py/src/ghidralldb/methods.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -522,7 +522,7 @@ def interrupt(process: Process):
522522
@REGISTRY.method(action='step_into')
523523
def step_into(thread: Thread,
524524
n: Annotated[int, ParamDesc(display='N')] = 1) -> None:
525-
"""Step on instruction exactly."""
525+
"""Step one instruction exactly."""
526526
t = find_thread_by_obj(thread)
527527
t.process.SetSelectedThread(t)
528528
exec_convert_errors('thread step-inst')

0 commit comments

Comments
 (0)