Skip to content

Commit 1d5567f

Browse files
authored
Update 02_check_voter.go (#288)
fix voting status
1 parent 8a13efd commit 1d5567f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

05_hash_tables/golang/02_check_voter.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ func main() {
1313

1414
func check_voter(name string) {
1515
if voted[name] {
16-
fmt.Println("kick tem out!")
16+
fmt.Println("kick them out!")
1717
} else {
1818
voted[name] = true
19-
fmt.Println("let tem vote!")
19+
fmt.Println("let them vote!")
2020
}
2121
}

0 commit comments

Comments
 (0)