diff --git a/src/Core__Float.resi b/src/Core__Float.resi index 0b42a28e..9609147e 100644 --- a/src/Core__Float.resi +++ b/src/Core__Float.resi @@ -225,7 +225,6 @@ Float.toExponential(5678.0, ~digits=2) // "5.68e+3" ## Exceptions - `RangeError`: If `digits` less than 0 or greater than 10. -``` */ @send external toExponential: (float, ~digits: int=?) => string = "toExponential" diff --git a/src/Core__Int.resi b/src/Core__Int.resi index 919b56b6..37c44ac3 100644 --- a/src/Core__Int.resi +++ b/src/Core__Int.resi @@ -340,7 +340,6 @@ Int.range(3, 6, ~options={step: -2}) // RangeError ## Exceptions - Raises `RangeError` if `step == 0 && start != end`. -``` */ let range: (int, int, ~options: rangeOptions=?) => array