
Go 1.19 also formats doc comments according to the new godoc syntax. Some of our comments, especially unexported symbols did not conform to the godoc syntax and therefore are mangled by 'go fmt'. This PR runs 'go fmt' from go1.19 on everything and manually fixes the problems. See also: https://github.com/golang/proposal/blob/master/design/51082-godocfmt.md
10 lines
330 B
Go
10 lines
330 B
Go
// Package proc is a low-level package that provides methods to manipulate
|
|
// the process we are debugging.
|
|
//
|
|
// proc implements all core functionality including:
|
|
//
|
|
// - creating / attaching to a process
|
|
// - process manipulation (step, next, continue, halt)
|
|
// - methods to explore the memory of the process
|
|
package proc
|