From b1afafb097eb79b19d23f83c2b05743d997843ff Mon Sep 17 00:00:00 2001 From: Ben Date: Mon, 2 Dec 2024 23:46:10 +0900 Subject: [PATCH] fix: incorrect comment on Math.sign --- src/Core__Math.resi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Core__Math.resi b/src/Core__Math.resi index ef146f9b..1216f72e 100644 --- a/src/Core__Math.resi +++ b/src/Core__Math.resi @@ -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 ``` */