Skip to content

Commit cb85797

Browse files
authored
Fix comment in log1p.c (#4507)
JerryScript-DCO-1.0-Signed-off-by: Yonggang Luo [email protected]
1 parent 8e83638 commit cb85797

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jerry-math/log1p.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ log1p (double x)
121121
/* x <= -1.0 */
122122
if (x == -1.0)
123123
{
124-
/* log1p(-1) = +inf */
124+
/* log1p(-1) = -inf */
125125
return -two54 / zero;
126126
}
127127
else

0 commit comments

Comments
 (0)