From ab4b730991e53d01737634b225696a2e793f90b1 Mon Sep 17 00:00:00 2001 From: Vicki Pfau Date: Sat, 6 Oct 2018 18:24:29 -0700 Subject: [PATCH] Debugger: More minor text fixes --- src/debugger/cli-debugger.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/debugger/cli-debugger.c b/src/debugger/cli-debugger.c index aff3f5ded..e4ff8ab5b 100644 --- a/src/debugger/cli-debugger.c +++ b/src/debugger/cli-debugger.c @@ -66,8 +66,8 @@ static struct CLIDebuggerCommandSummary _debuggerCommands[] = { { "break", _setBreakpoint, "Is", "Set a breakpoint" }, { "c", _continue, "", "Continue execution" }, { "continue", _continue, "", "Continue execution" }, - { "d", _clearBreakpoint, "I", "Delete a breakpoint" }, - { "delete", _clearBreakpoint, "I", "Delete a breakpoint" }, + { "d", _clearBreakpoint, "I", "Delete a breakpoint or watchpoint" }, + { "delete", _clearBreakpoint, "I", "Delete a breakpoint or watchpoint" }, { "dis", _disassemble, "Ii", "Disassemble instructions" }, { "disasm", _disassemble, "Ii", "Disassemble instructions" }, { "disassemble", _disassemble, "Ii", "Disassemble instructions" },