From 99bda939c8a26c070c602b629e5b5a7232722277 Mon Sep 17 00:00:00 2001 From: Firas Khalil Khana Date: Sat, 1 May 2021 13:21:55 +0300 Subject: [PATCH] Fix typo kokemon (should be pokemon) --- 16-slices/03-slices-vs-arrays-examples/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/16-slices/03-slices-vs-arrays-examples/main.go b/16-slices/03-slices-vs-arrays-examples/main.go index 7307ce3..0b854e9 100644 --- a/16-slices/03-slices-vs-arrays-examples/main.go +++ b/16-slices/03-slices-vs-arrays-examples/main.go @@ -24,7 +24,7 @@ func main() { } books = newBooks - games := []string{"kokemon", "sims"} + games := []string{"pokemon", "sims"} newGames := []string{"pacman", "doom", "pong"} newGames = games games = nil