Skip to content

Commit f042582

Browse files
authored
fix: incorrect comment on Math.sign (#249)
1 parent e230098 commit f042582

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/Core__Math.resi

+1-1
Original file line numberDiff line numberDiff line change
@@ -788,7 +788,7 @@ See [`Math.sign`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refere
788788

789789
```rescript
790790
Math.sign(3.0) // 1.0
791-
Math.sign(-3.0) // 1.0
791+
Math.sign(-3.0) // -1.0
792792
Math.sign(0.0) // 0.0
793793
```
794794
*/

0 commit comments

Comments
 (0)