修正错误使用了中文引号 (#659)

This commit is contained in:
iepngs
2019-07-09 10:59:55 +08:00
committed by ᴊ. ᴄʜᴇɴ
parent cf2bbc8947
commit 28a8afc954

View File

@@ -8,7 +8,7 @@ field or method next)** 译者注n.next未定义*nexter类型没有next
```go
package main
import (
fmt
"fmt"
)
type nexter interface {
next() byte
@@ -28,7 +28,7 @@ func nextFew2(n *nexter, num int) []byte {
return b
}
func main() {
fmt.Println(Hello World!)
fmt.Println("Hello World!")
}
```