At the end of this section where it shows the outputs: ```go floats := slices.Map(s, func(i int) float64 { return float64(i) })// Now float2 is []float64{1.0, 2.0, 3.0}. ``` shouldn't that be: ```go floats := slices.Map(s, func(i int) float64 { return float64(i) })// Now floats is []float64{1.0, 2.0, 3.0}. ```
-- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/golang-nuts/50d7ea44-9aa2-4688-84fd-22fb2c08f09ao%40googlegroups.com.