From b60217d962178677b484d685352ca43ca3e88061 Mon Sep 17 00:00:00 2001 From: "Unknown W. Brackets" Date: Tue, 27 Sep 2022 19:02:18 -0700 Subject: [PATCH] Debugger: Fix doc typo for disasm/assemble names. --- Core/Debugger/WebSocket/DisasmSubscriber.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Core/Debugger/WebSocket/DisasmSubscriber.cpp b/Core/Debugger/WebSocket/DisasmSubscriber.cpp index 79a0fe70a8..0c256ded14 100644 --- a/Core/Debugger/WebSocket/DisasmSubscriber.cpp +++ b/Core/Debugger/WebSocket/DisasmSubscriber.cpp @@ -379,7 +379,7 @@ void WebSocketDisasmState::Disasm(DebuggerRequest &req) { json.pop(); } -// Search disassembly for some text (cpu.searchDisasm) +// Search disassembly for some text (memory.searchDisasm) // // Parameters: // - thread: optional number indicating the thread id (may not affect search much.) @@ -461,7 +461,7 @@ void WebSocketDisasmState::SearchDisasm(DebuggerRequest &req) { json.writeNull("address"); } -// Assemble an instruction (cpu.assemble) +// Assemble an instruction (memory.assemble) // // Parameters: // - address: number indicating the address to write to.