aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIkko Ashimine <eltociear@gmail.com>2021-02-04 02:47:37 +0000
committerKeith Randall <khr@golang.org>2021-02-04 04:46:49 +0000
commit8869086d8f0a31033ccdc103106c768dc17216b1 (patch)
tree4d85ffc6270827f23bbdcdda36d0529b743f7625
parente491c6eea9ad599a0ae766a3217bd9a16ca3a25a (diff)
downloadgo-8869086d8f0a31033ccdc103106c768dc17216b1.tar.gz
go-8869086d8f0a31033ccdc103106c768dc17216b1.zip
runtime: fix typo in histogram.go
indicies -> indices Change-Id: Ia50ae5918fc7a53c23590a94a18087a99bfd9bb7 GitHub-Last-Rev: 98eb724275fd61d5f5ce5dad6b1010c10f76906d GitHub-Pull-Request: golang/go#44095 Reviewed-on: https://go-review.googlesource.com/c/go/+/289529 Reviewed-by: Ian Lance Taylor <iant@golang.org> Trust: Keith Randall <khr@golang.org>
-rw-r--r--src/runtime/histogram.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/histogram.go b/src/runtime/histogram.go
index 42baa6c5e2c..da4910d341c 100644
--- a/src/runtime/histogram.go
+++ b/src/runtime/histogram.go
@@ -26,7 +26,7 @@ const (
// The number of super-buckets (timeHistNumSuperBuckets), on the
// other hand, defines the range. To reserve room for sub-buckets,
// bit timeHistSubBucketBits is the first bit considered for
- // super-buckets, so super-bucket indicies are adjusted accordingly.
+ // super-buckets, so super-bucket indices are adjusted accordingly.
//
// As an example, consider 45 super-buckets with 16 sub-buckets.
//