Skip to content

Commit 871b6f7

Browse files
authored
fix docstrings (#213)
1 parent 9516a08 commit 871b6f7

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

src/Core__Float.resi

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,6 @@ Float.toExponential(5678.0, ~digits=2) // "5.68e+3"
225225
## Exceptions
226226

227227
- `RangeError`: If `digits` less than 0 or greater than 10.
228-
```
229228
*/
230229
@send
231230
external toExponential: (float, ~digits: int=?) => string = "toExponential"

src/Core__Int.resi

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,6 @@ Int.range(3, 6, ~options={step: -2}) // RangeError
340340
## Exceptions
341341

342342
- Raises `RangeError` if `step == 0 && start != end`.
343-
```
344343
*/
345344
let range: (int, int, ~options: rangeOptions=?) => array<int>
346345

0 commit comments

Comments
 (0)