This website works better with JavaScript
Home
Explore
Help
Sign In
nice-repo-share
/
the-way-to-go_ZH_CN
mirror of
https://github.com/Unknwon/the-way-to-go_ZH_CN.git
Watch
2
Star
0
Fork
0
Files
Issues
0
Wiki
Browse Source
Update 12.5.md (
#777
)
修复示例打开文件未关闭错误
sbkebcmj
5 years ago
parent
b4dbc14dd5
commit
f8479c8188
1 changed files
with
1 additions
and
0 deletions
Split View
Show Diff Stats
1
0
eBook/12.5.md
+ 1
- 0
eBook/12.5.md
View File
@@ -40,6 +40,7 @@ func main() {
continue
}
cat(bufio.NewReader(f))
+ f.Close()
}
}
```