From cc5e0e2b1e7bfbd6a9d59b19056ad2bb8c126ee5 Mon Sep 17 00:00:00 2001 From: Jackie Li Date: Fri, 13 Feb 2015 17:15:40 +0000 Subject: [PATCH] be consistent on messages for "info" command --- command/command.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command/command.go b/command/command.go index 398e3e09..20755499 100644 --- a/command/command.go +++ b/command/command.go @@ -51,7 +51,7 @@ func DebugCommands() *Commands { command{aliases: []string{"clear"}, cmdFn: clear, helpMsg: "Deletes breakpoint."}, command{aliases: []string{"goroutines"}, cmdFn: goroutines, helpMsg: "Print out info for every goroutine."}, command{aliases: []string{"print", "p"}, cmdFn: printVar, helpMsg: "Evaluate a variable."}, - command{aliases: []string{"info"}, cmdFn: info, helpMsg: "Provides info about source, locals, args, or funcs."}, + command{aliases: []string{"info"}, cmdFn: info, helpMsg: "Provides info about args, funcs, locals, sources, or vars."}, command{aliases: []string{"exit"}, cmdFn: nullCommand, helpMsg: "Exit the debugger."}, } -- GitLab