diff --git a/terminal/command.go b/terminal/command.go index 41793806071c6b4cc4f1b03de98760941ba4bb8d..cf28a9ed28dae33ac001b136d9efeef4faa929df 100644 --- a/terminal/command.go +++ b/terminal/command.go @@ -95,7 +95,7 @@ func DebugCommands(client service.Client) *Commands { {aliases: []string{"exit", "quit", "q"}, cmdFn: exitCommand, helpMsg: "Exit the debugger."}, {aliases: []string{"list", "ls"}, allowedPrefixes: scopePrefix, cmdFn: listCommand, helpMsg: "list . Show source around current point or provided linespec."}, {aliases: []string{"stack", "bt"}, allowedPrefixes: scopePrefix | onPrefix, cmdFn: stackCommand, helpMsg: "stack [] [-full]. Prints stack."}, - {aliases: []string{"frame"}, allowedPrefixes: scopePrefix, cmdFn: c.frame, helpMsg: "Sets current stack frame (0 is the top of the stack)"}, + {aliases: []string{"frame"}, allowedPrefixes: scopePrefix, cmdFn: c.frame, helpMsg: "frame . Executes command on the specified stack frame"}, {aliases: []string{"source"}, cmdFn: c.sourceCommand, helpMsg: "Executes a file containing a list of delve commands"}, {aliases: []string{"disassemble", "disass"}, allowedPrefixes: scopePrefix, cmdFn: disassCommand, helpMsg: "Displays disassembly of specific function or address range: disassemble [-a ] [-l ]"}, {aliases: []string{"on"}, cmdFn: c.onCmd, helpMsg: "on . Executes command when the specified breakpoint is hit (supported commands: print , stack [] [-full] and goroutine)"},