Merge pull request #59 from tsl0922/master

fix typo
This commit is contained in:
无闻
2014-12-05 01:28:28 -05:00
2 changed files with 4 additions and 4 deletions

View File

@@ -100,7 +100,7 @@ Example 5.3 [string_conversion2.go](examples/chapter_5/string_conversion2.go)
**注意事项**
如果您下面一样,没有为多返回值的函数准备足够的变量来存放结果:
如果您下面一样,没有为多返回值的函数准备足够的变量来存放结果:
func mySqrt(f float64) (v float64, ok bool) {
if f < 0 { return } // error case