doc/cli: fix clear-checkpoint command typo

This commit is contained in:
Tao Zhou
2017-08-02 09:50:45 +08:00
committed by Derek Parker
parent 7214ffe20e
commit fead9fe0f8
2 changed files with 5 additions and 3 deletions

View File

@ -84,7 +84,7 @@ Deletes breakpoint.
## clear-checkpoint
Deletes checkpoint.
checkpoint <id>
clear-checkpoint <id>
Aliases: clearcheck
@ -190,6 +190,8 @@ Print local variables.
[goroutine <n>] [frame <m>] locals [-v] [<regex>]
The name of variables that are shadowed in the current scope will be shown in parenthesis.
If regex is specified only local variables with a name matching it will be returned. If -v is specified more information about each local variable will be shown.

View File

@ -243,7 +243,7 @@ Specifies that the breakpoint or tracepoint should break only if the boolean exp
cmdFn: clearCheckpoint,
helpMsg: `Deletes checkpoint.
checkpoint <id>`,
clear-checkpoint <id>`,
})
for i := range c.cmds {
v := &c.cmds[i]