From 1d5567fe9a20adc29acf1672511bce5323d917cb Mon Sep 17 00:00:00 2001 From: Renan Duarte Leal <104607462+Renan-Leal@users.noreply.github.com> Date: Sat, 7 Dec 2024 10:30:04 -0300 Subject: [PATCH] Update 02_check_voter.go (#288) fix voting status --- 05_hash_tables/golang/02_check_voter.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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!") } }