diff options
author | Andrew Gallant (Ocelot) <Andrew.Gallant@tufts.edu> | 2012-06-04 23:55:20 -0400 |
---|---|---|
committer | Přemysl Janouch <p@janouch.name> | 2018-09-08 16:49:14 +0200 |
commit | e9dc18b4f9a6a3f02dceaef93bafee3c826b8dd3 (patch) | |
tree | fa3e1fe323a9e8a5f7c7f7a1e0d0df6e6c9d132c /nexgb | |
parent | 744c9688cc58cbf83415439e281c9aa2825fd7f7 (diff) | |
download | haven-e9dc18b4f9a6a3f02dceaef93bafee3c826b8dd3.tar.gz haven-e9dc18b4f9a6a3f02dceaef93bafee3c826b8dd3.tar.xz haven-e9dc18b4f9a6a3f02dceaef93bafee3c826b8dd3.zip |
Doc fix.
Diffstat (limited to 'nexgb')
-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 |