From 23903bca9c0107ea225fa0b29729c59bc219c603 Mon Sep 17 00:00:00 2001 From: Ben McNicholl Date: Sat, 9 Jul 2022 13:42:21 +1000 Subject: [PATCH] Fix typo in Println statement --- examples/generics/generics.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/generics/generics.go b/examples/generics/generics.go index de20e28..c6fa91a 100644 --- a/examples/generics/generics.go +++ b/examples/generics/generics.go @@ -61,7 +61,7 @@ func main() { // specify the types for `K` and `V` when // calling `MapKeys` - the compiler infers them // automatically. - fmt.Println("keys m:", MapKeys(m)) + fmt.Println("keys:", MapKeys(m)) // ... though we could also specify them explicitly. _ = MapKeys[int, string](m)