Fix typo in Println statement
This commit is contained in:
parent
0eaaca29ef
commit
23903bca9c
@ -61,7 +61,7 @@ func main() {
|
|||||||
// specify the types for `K` and `V` when
|
// specify the types for `K` and `V` when
|
||||||
// calling `MapKeys` - the compiler infers them
|
// calling `MapKeys` - the compiler infers them
|
||||||
// automatically.
|
// automatically.
|
||||||
fmt.Println("keys m:", MapKeys(m))
|
fmt.Println("keys:", MapKeys(m))
|
||||||
|
|
||||||
// ... though we could also specify them explicitly.
|
// ... though we could also specify them explicitly.
|
||||||
_ = MapKeys[int, string](m)
|
_ = MapKeys[int, string](m)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user