Skip to content

Commit

Permalink
Fix comment in log1p.c (#4507)
Browse files Browse the repository at this point in the history
JerryScript-DCO-1.0-Signed-off-by: Yonggang Luo [email protected]
  • Loading branch information
lygstate authored Jan 18, 2021
1 parent 8e83638 commit cb85797
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jerry-math/log1p.c
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ log1p (double x)
/* x <= -1.0 */
if (x == -1.0)
{
/* log1p(-1) = +inf */
/* log1p(-1) = -inf */
return -two54 / zero;
}
else
Expand Down

0 comments on commit cb85797

Please sign in to comment.