Skip to content

Commit e99e961

Browse files
Updates
1 parent c853797 commit e99e961

3 files changed

Lines changed: 2 additions & 41 deletions

File tree

chapter5/listing03/listing03.go

Lines changed: 0 additions & 39 deletions
This file was deleted.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ type user struct {
1414

1515
// notify implements a method with a value receiver.
1616
func (u user) notify() {
17-
fmt.Printf("User: Sending User Email To %s<%s>\n",
17+
fmt.Printf("Sending User Email To %s<%s>\n",
1818
u.name,
1919
u.email)
2020
}

chapter5/listing34/listing34.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ type user struct {
1919

2020
// notify implements a method with a pointer receiver.
2121
func (u *user) notify() {
22-
fmt.Printf("User: Sending User Email To %s<%s>\n",
22+
fmt.Printf("Sending User Email To %s<%s>\n",
2323
u.name,
2424
u.email)
2525
}

0 commit comments

Comments
 (0)