service: fix typos in comments, logs, tests, and vars (#3378)

This commit is contained in:
Oleksandr Redko
2023-05-23 19:21:36 +03:00
committed by GitHub
parent faebde12f4
commit e33806a3f7
7 changed files with 25 additions and 25 deletions

View File

@ -253,7 +253,7 @@ type CreateBreakpointOut struct {
}
// CreateBreakpoint creates a new breakpoint. The client is expected to populate `CreateBreakpointIn`
// with an `api.Breakpoint` struct describing where to set the breakpoing. For more information on
// with an `api.Breakpoint` struct describing where to set the breakpoint. For more information on
// how to properly request a breakpoint via the `api.Breakpoint` struct see the documentation for
// `debugger.CreateBreakpoint` here: https://pkg.go.dev/github.com/go-delve/delve/service/debugger#Debugger.CreateBreakpoint.
func (s *RPCServer) CreateBreakpoint(arg CreateBreakpointIn, out *CreateBreakpointOut) error {