Minor correction to instruction text for animal-magic instructions.md

The following text instruction does not match the comment after the function, as the text says between and the comment says the value can be equal to zero. Please change the text to “… number equal or greater than 0.0 and less than 12.0”.

Implement a GenerateWandEnergy function. The wand energy should be a random floating point number between 0.0 and 12.0.

f := GenerateWandEnergy() // f will be assigned a random float64, 0.0 <= f < 12.0

Hey @Kristianwhittick

What change do you suggest to make the description clearer?

Change the text From

Implement a GenerateWandEnergy function. The wand energy should be a random floating point number between 0.0 and 12.0.

To
Implement a GenerateWandEnergy function. The wand energy should be a random floating point number equal or greater than 0.0 and less than 12.0

Would you like to create a PR with the change? If so, link it here and I’ll approve it.

Perfect thanks PR raised.

Merged, thanks!