summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Gallant (Ocelot) <[email protected]>2012-06-04 23:55:20 -0400
committerAndrew Gallant (Ocelot) <[email protected]>2012-06-04 23:55:20 -0400
commit2989c56dd190b0cacaada97c52eaeb7f153f5963 (patch)
tree647cad698dbdd655c18f8756dd5a923202eb7b7f
parent87f01b78ebb3233a40bbe854468a62c778bee79a (diff)
Doc fix.
-rw-r--r--help.go2
1 files changed, 1 insertions, 1 deletions
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