runtime: fix a few function names on comments

Change-Id: I9ef4898d68dfd06618c0bd8e23f81a1d2c77a836
Signed-off-by: cui fliter <imcusg@gmail.com>
Reviewed-on: https://go-review.googlesource.com/c/go/+/447460
Auto-Submit: Michael Pratt <mpratt@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Reviewed-by: Matthew Dempsky <mdempsky@google.com>
Reviewed-by: Michael Pratt <mpratt@google.com>
Run-TryBot: Michael Pratt <mpratt@google.com>
This commit is contained in:
cui fliter 2022-11-03 15:39:41 +08:00 committed by Gopher Robot
parent 72ce9ba9cb
commit 969bea8d59
5 changed files with 6 additions and 6 deletions

View file

@ -564,7 +564,7 @@ type adjustinfo struct {
sghi uintptr
}
// Adjustpointer checks whether *vpp is in the old stack described by adjinfo.
// adjustpointer checks whether *vpp is in the old stack described by adjinfo.
// If so, it rewrites *vpp to point into the new stack.
func adjustpointer(adjinfo *adjustinfo, vpp unsafe.Pointer) {
pp := (*uintptr)(vpp)