Clarify wording in Random.nextUInt docs: missed extra 'not'

This commit is contained in:
Ilya Gorbunov
2019-04-03 03:32:29 +03:00
parent 69353ee9bf
commit dde2b30601
@@ -16,7 +16,7 @@ package kotlin.random
public fun Random.nextUInt(): UInt = nextInt().toUInt()
/**
* Gets the next random [UInt] from the random number generator not less the specified [until] bound.
* Gets the next random [UInt] from the random number generator less than the specified [until] bound.
*
* Generates a [UInt] random value uniformly distributed between `0` (inclusive) and the specified [until] bound (exclusive).
*