Skip to content

Commit

Permalink
fix: incorrect comment on Math.sign (#249)
Browse files Browse the repository at this point in the history
  • Loading branch information
JUSTIVE authored Dec 3, 2024
1 parent e230098 commit f042582
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Core__Math.resi
Original file line number Diff line number Diff line change
Expand Up @@ -788,7 +788,7 @@ See [`Math.sign`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refere
```rescript
Math.sign(3.0) // 1.0
Math.sign(-3.0) // 1.0
Math.sign(-3.0) // -1.0
Math.sign(0.0) // 0.0
```
*/
Expand Down

0 comments on commit f042582

Please sign in to comment.