1 parent c853797 commit e99e961Copy full SHA for e99e961
3 files changed
chapter5/listing03/listing03.go
chapter5/listing01/listing01.go chapter5/listing11/listing11.gochapter5/listing01/listing01.go renamed to chapter5/listing11/listing11.go
@@ -14,7 +14,7 @@ type user struct {
14
15
// notify implements a method with a value receiver.
16
func (u user) notify() {
17
- fmt.Printf("User: Sending User Email To %s<%s>\n",
+ fmt.Printf("Sending User Email To %s<%s>\n",
18
u.name,
19
u.email)
20
}
chapter5/listing34/listing34.go
@@ -19,7 +19,7 @@ type user struct {
// notify implements a method with a pointer receiver.
21
func (u *user) notify() {
22
23
24
25
0 commit comments