fix: comment io compose ifaces

This commit is contained in:
Inanc Gumus
2019-11-08 11:40:39 +03:00
parent b0a835818b
commit 7eef52cec8

View File

@ -40,7 +40,7 @@ func main() {
} }
fmt.Printf("%d bytes transferred.\n", n) fmt.Printf("%d bytes transferred.\n", n)
// multiple deferred funcs are run in reverse order: // main() runs the deferred funcs in reverse order:
// file.Close() // file.Close()
// resp.Body.Close() // resp.Body.Close()
} }