Skip to content

Commit 943e613

Browse files
Update README.md
closes #1
1 parent b12562c commit 943e613

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

1-factory/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ Let's test it out
103103

104104
```go
105105
func describePet(pet Pet) string {
106-
return fmt.Sprintf("%s is %d years old. It's sound is %s", pet.GetName(), pet.GetAge(), pet.GetSound())
106+
return fmt.Sprintf("%s is %d years old. Its sound is %s", pet.GetName(), pet.GetAge(), pet.GetSound())
107107
}
108108

109109
func main() {
@@ -126,7 +126,7 @@ func main() {
126126
The output should look like:
127127

128128
```text
129-
Chester is 2 years old. It's sound is bark
129+
Chester is 2 years old. Its sound is bark
130130
-------------
131-
Mr. Buttons is 3 years old. It's sound is meow
131+
Mr. Buttons is 3 years old. Its sound is meow
132132
```

0 commit comments

Comments
 (0)