aboutsummaryrefslogtreecommitdiff
path: root/src/internal/concurrent/hashtriemap.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/internal/concurrent/hashtriemap.go')
-rw-r--r--src/internal/concurrent/hashtriemap.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/internal/concurrent/hashtriemap.go b/src/internal/concurrent/hashtriemap.go
index 348e3b6c47..5e31023494 100644
--- a/src/internal/concurrent/hashtriemap.go
+++ b/src/internal/concurrent/hashtriemap.go
@@ -306,7 +306,7 @@ const (
// 16 children. This seems to be the sweet spot for
// load performance: any smaller and we lose out on
// 50% or more in CPU performance. Any larger and the
- // returns are miniscule (~1% improvement for 32 children).
+ // returns are minuscule (~1% improvement for 32 children).
nChildrenLog2 = 4
nChildren = 1 << nChildrenLog2
nChildrenMask = nChildren - 1