*: Correct spelling mistakes (#3555)

This commit is contained in:
Oleksandr Redko
2023-11-06 15:55:44 +02:00
committed by GitHub
parent c727ec52c5
commit 13d6cd4e0d
13 changed files with 18 additions and 18 deletions

View File

@ -179,7 +179,7 @@ type Thread struct {
// Breakpoint this thread is stopped at
Breakpoint *Breakpoint `json:"breakPoint,omitempty"`
// Informations requested by the current breakpoint
// Information requested by the current breakpoint
BreakpointInfo *BreakpointInfo `json:"breakPointInfo,omitempty"`
// ReturnValues contains the return values of the function we just stepped out of
@ -422,7 +422,7 @@ type DebuggerCommand struct {
UnsafeCall bool `json:"unsafeCall,omitempty"`
}
// BreakpointInfo contains informations about the current breakpoint
// BreakpointInfo contains information about the current breakpoint
type BreakpointInfo struct {
Stacktrace []Stackframe `json:"stacktrace,omitempty"`
Goroutine *Goroutine `json:"goroutine,omitempty"`