Errata
If you find an error, please let me know: mail@practicalgobook.net
Chapter 1
Page 5 (Electronic and Print)
Current greetUser()
function is missing a closing paren in the arguments. The fixed version:
func greetUser(c config, name string, w io.Writer) {
// function body remains same
}
(Thanks to Max Wolffe for reporting)