mirror of
https://github.com/go-delve/delve.git
synced 2025-10-29 01:27:16 +08:00
Documentation: fix typo and grammar issues (#3291)
This commit is contained in:
@ -199,7 +199,7 @@ With the -hitcount option a condition on the breakpoint hit count can be set, th
|
||||
|
||||
The -per-g-hitcount option works like -hitcount, but use per goroutine hitcount to compare with n.
|
||||
|
||||
With the -clear option a condtion on the breakpoint can removed.
|
||||
With the -clear option a condition on the breakpoint can removed.
|
||||
|
||||
The '% n' form means we should stop at the breakpoint when the hitcount is a multiple of n.
|
||||
|
||||
|
||||
@ -133,7 +133,7 @@ Because many architectures have SIMD registers that can be used by the applicati
|
||||
|
||||
* `REGNAME.intN` returns the register REGNAME as an array of intN elements.
|
||||
* `REGNAME.uintN` returns the register REGNAME as an array of uintN elements.
|
||||
* `REGNAME.floatN` returns the register REGNAME as an array fo floatN elements.
|
||||
* `REGNAME.floatN` returns the register REGNAME as an array of floatN elements.
|
||||
|
||||
In all cases N must be a power of 2.
|
||||
|
||||
|
||||
@ -178,7 +178,7 @@ def command_echo_expr(a, b, c):
|
||||
print("a", a, "b", b, "c", c)
|
||||
```
|
||||
|
||||
The first commnad, `echo`, takes its arguments as a single string, while for `echo_expr` it will be possible to pass starlark expression as arguments:
|
||||
The first command, `echo`, takes its arguments as a single string, while for `echo_expr` it will be possible to pass starlark expression as arguments:
|
||||
|
||||
```
|
||||
(dlv) echo 2+2, 2-1, 2*3
|
||||
|
||||
Reference in New Issue
Block a user