Merge pull request #246 from sunclx/patch-1

Update ch2-06-2.md:pc初始化函数缺少return
pull/1/head
chai2010 2016-01-31 14:58:08 +08:00
commit 9e3805d9b1
1 changed files with 1 additions and 0 deletions

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
}()
```