go: fix iife typo

This commit is contained in:
Rico Sta. Cruz 2017-09-15 16:32:36 +08:00
parent 59c4c0a38b
commit 9b85ea8b5b
No known key found for this signature in database
GPG Key ID: CAAD38AE2962619A
1 changed files with 1 additions and 1 deletions

2
go.md
View File

@ -332,7 +332,7 @@ See: [Defer, panic and recover](https://blog.golang.org/defer-panic-and-recover)
func main() { func main() {
defer func() { defer func() {
fmt.Println("Done") fmt.Println("Done")
} }()
fmt.Println("Working...") fmt.Println("Working...")
} }
``` ```