aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/internal
diff options
context:
space:
mode:
authorcui fliter <imcusg@gmail.com>2022-11-03 15:39:41 +0800
committerGopher Robot <gobot@golang.org>2022-11-07 19:48:30 +0000
commit969bea8d59daa6bdd478b71f6e99d8b8f625a140 (patch)
tree6cdfdb01c9a633fd897924568ca3565fec2b0f95 /src/runtime/internal
parent72ce9ba9cb640f1a2184389d1dc146d731882328 (diff)
downloadgo-969bea8d59daa6bdd478b71f6e99d8b8f625a140.tar.xz
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>
Diffstat (limited to 'src/runtime/internal')
-rw-r--r--src/runtime/internal/sys/intrinsics_common.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/internal/sys/intrinsics_common.go b/src/runtime/internal/sys/intrinsics_common.go
index 709ec23f9d..1461551dda 100644
--- a/src/runtime/internal/sys/intrinsics_common.go
+++ b/src/runtime/internal/sys/intrinsics_common.go
@@ -24,7 +24,7 @@ const len8tab = "" +
"\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08" +
"\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08"
-// len64 returns the minimum number of bits required to represent x; the result is 0 for x == 0.
+// Len64 returns the minimum number of bits required to represent x; the result is 0 for x == 0.
//
// nosplit because this is used in src/runtime/histogram.go, which make run in sensitive contexts.
//