Debugger: fix description of step_into

This commit is contained in:
Andras Gemes
2025-04-07 13:55:11 +02:00
committed by GitHub
parent 8441563165
commit 6d5a061290
@@ -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')