From: guoguangwu Date: Mon, 26 Feb 2024 09:32:48 +0000 (+0000) Subject: reflect: fix typo in comment X-Git-Tag: go1.23rc1~1105 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=320f1be51f90fd7432b24769257df6f4061142ae;p=gostls13.git reflect: fix typo in comment Change-Id: Ia8e666b128622391d72e42449c01c4e10f3c9e1e GitHub-Last-Rev: c74cf13b70772a965a14630108544a89690d1383 GitHub-Pull-Request: golang/go#65938 Reviewed-on: https://go-review.googlesource.com/c/go/+/566855 Reviewed-by: Carlos Amedee Reviewed-by: qiulaidongfeng <2645477756@qq.com> Auto-Submit: Ian Lance Taylor LUCI-TryBot-Result: Go LUCI Reviewed-by: Ian Lance Taylor --- diff --git a/src/reflect/value.go b/src/reflect/value.go index adb81d4641..ae24eea795 100644 --- a/src/reflect/value.go +++ b/src/reflect/value.go @@ -945,7 +945,7 @@ func align(x, n uintptr) uintptr { // so that the linker can make it work correctly for panic and recover. // The gc compilers know to do that for the name "reflect.callMethod". // -// ctxt is the "closure" generated by makeVethodValue. +// ctxt is the "closure" generated by makeMethodValue. // frame is a pointer to the arguments to that closure on the stack. // retValid points to a boolean which should be set when the results // section of frame is set.