Merge pull request #246 from sunclx/patch-1

Update ch2-06-2.md:pc初始化函数缺少return
This commit is contained in:
chai2010
2016-01-31 14:58:08 +08:00

View File

@@ -58,6 +58,7 @@ var pc [256]byte = func() (pc [256]byte) {
for i := range pc {
pc[i] = pc[i/2] + byte(i&1)
}
return
}()
```