1
0
mirror of https://github.com/golang/go synced 2024-11-23 11:50:09 -07:00

runtime: fix typo in histogram.go

indicies -> indices
This commit is contained in:
Ikko Ashimine 2021-02-04 11:34:58 +09:00 committed by GitHub
parent e491c6eea9
commit 98eb724275
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -26,7 +26,7 @@ const (
// The number of super-buckets (timeHistNumSuperBuckets), on the // The number of super-buckets (timeHistNumSuperBuckets), on the
// other hand, defines the range. To reserve room for sub-buckets, // other hand, defines the range. To reserve room for sub-buckets,
// bit timeHistSubBucketBits is the first bit considered for // 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. // As an example, consider 45 super-buckets with 16 sub-buckets.
// //