diff options
-rw-r--r-- | nexgb/help.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nexgb/help.go b/nexgb/help.go index 5729917..f692442 100644 --- a/nexgb/help.go +++ b/nexgb/help.go @@ -37,7 +37,7 @@ func Pad(n int) int { return (n + 3) & ^3 } -// popCount counts the number of bits set in a value list mask. +// PopCount counts the number of bits set in a value list mask. func PopCount(mask0 int) int { mask := uint32(mask0) n := 0 |