Fix typo in Println statement

This commit is contained in:
Ben McNicholl 2022-07-09 13:42:21 +10:00
parent 0eaaca29ef
commit 23903bca9c
No known key found for this signature in database
GPG Key ID: 8C7F8C580482F350

View File

@ -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)