Fix typo in description of Float.ulp

Replace `Float.NIN_VALUE` with `Float.MIN_VALUE`.
This commit is contained in:
Dario Seidl
2022-01-13 12:25:44 +01:00
committed by ilya-g
parent 68f4580492
commit 8d8bf6473b
@@ -1085,7 +1085,7 @@ public actual inline fun Float.withSign(sign: Int): Float = nativeMath.copySign(
* Special Cases:
* - `NaN.ulp` is `NaN`
* - `x.ulp` is `+Inf` when `x` is `+Inf` or `-Inf`
* - `0.0.ulp` is `Float.NIN_VALUE`
* - `0.0.ulp` is `Float.MIN_VALUE`
*/
@SinceKotlin("1.2")
@InlineOnly