mirror of
https://github.com/janet-lang/janet
synced 2024-11-28 19:19:53 +00:00
Tweak math/nan docstring
This commit is contained in:
parent
468a31f515
commit
e6ee867f72
@ -375,7 +375,7 @@ void janet_lib_math(JanetTable *env) {
|
|||||||
JANET_CORE_DEF(env, "math/int-max", janet_wrap_number(JANET_INTMAX_DOUBLE),
|
JANET_CORE_DEF(env, "math/int-max", janet_wrap_number(JANET_INTMAX_DOUBLE),
|
||||||
"The maximum contiguous integer represtenable by a double (-(2^53))");
|
"The maximum contiguous integer represtenable by a double (-(2^53))");
|
||||||
#ifdef NAN
|
#ifdef NAN
|
||||||
JANET_CORE_DEF(env, "math/nan", janet_wrap_number(NAN), "Not a number (IEEE-754 NaN");
|
JANET_CORE_DEF(env, "math/nan", janet_wrap_number(NAN), "Not a number (IEEE-754 NaN)");
|
||||||
#else
|
#else
|
||||||
JANET_CORE_DEF(env, "math/nan", janet_wrap_number(0.0 / 0.0), "Not a number (IEEE-754 NaN)");
|
JANET_CORE_DEF(env, "math/nan", janet_wrap_number(0.0 / 0.0), "Not a number (IEEE-754 NaN)");
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user