Small doc clarification for Random::nextFloat()

‘incluse’ and ‘exclusive’ are detailed for nextInt() but are missing for nextFloat() and nextDouble() :

@returns a random value in the range 0 (inclusive) to 1.0 (exclusive).

Good catch! I’ve added that in now.

Ed