diff --git a/05_hash_tables/golang/02_check_voter.go b/05_hash_tables/golang/02_check_voter.go index 4da9544..296371f 100644 --- a/05_hash_tables/golang/02_check_voter.go +++ b/05_hash_tables/golang/02_check_voter.go @@ -13,9 +13,9 @@ func main() { func check_voter(name string) { if voted[name] { - fmt.Println("kick tem out!") + fmt.Println("kick them out!") } else { voted[name] = true - fmt.Println("let tem vote!") + fmt.Println("let them vote!") } }