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

@ -407,7 +407,7 @@ type DebuggerCommand struct {
// UnsafeCall disables parameter escape checking for function calls.
// Go objects can be allocated on the stack or on the heap. Heap objects
// can be used by any goroutine; stack objects can only be used by the
// goroutine that owns the stack they are allocated on and can not surivive
// goroutine that owns the stack they are allocated on and can not survive
// the stack frame of allocation.
// The Go compiler will use escape analysis to determine whether to
// allocate an object on the stack or the heap.