From 40eec12308a22faa887604fe73f1e7ecf03585a5 Mon Sep 17 00:00:00 2001 From: Derek Parker Date: Sun, 4 Oct 2015 10:59:53 -0700 Subject: [PATCH] terminal/command: Update `clearall` help text --- terminal/command.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terminal/command.go b/terminal/command.go index 8fa40b4d..2f84a844 100644 --- a/terminal/command.go +++ b/terminal/command.go @@ -61,7 +61,7 @@ func DebugCommands(client service.Client) *Commands { {aliases: []string{"threads"}, cmdFn: threads, helpMsg: "Print out info for every traced thread."}, {aliases: []string{"thread", "tr"}, cmdFn: thread, helpMsg: "Switch to the specified thread."}, {aliases: []string{"clear"}, cmdFn: clear, helpMsg: "Deletes breakpoint."}, - {aliases: []string{"clearall"}, cmdFn: clearAll, helpMsg: "clearall []. Deletes all breakpoints matching linespec."}, + {aliases: []string{"clearall"}, cmdFn: clearAll, helpMsg: "clearall []. Deletes all breakpoints. If is provided, only matching breakpoints will be deleted."}, {aliases: []string{"goroutines"}, cmdFn: goroutines, helpMsg: "Print out info for every goroutine."}, {aliases: []string{"goroutine"}, cmdFn: goroutine, helpMsg: "Sets current goroutine."}, {aliases: []string{"breakpoints", "bp"}, cmdFn: breakpoints, helpMsg: "Print out info for active breakpoints."},