From 2989c56dd190b0cacaada97c52eaeb7f153f5963 Mon Sep 17 00:00:00 2001 From: "Andrew Gallant (Ocelot)" Date: Mon, 4 Jun 2012 23:55:20 -0400 Subject: [PATCH] Doc fix. --- help.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/help.go b/help.go index 5729917..f692442 100644 --- a/help.go +++ b/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