1
0
mirror of https://github.com/janet-lang/janet synced 2025-02-24 04:00:02 +00:00

Update math/log docstring

This commit is contained in:
curist 2019-07-28 22:18:36 +08:00
parent eafcb548ce
commit c2ef58d880

View File

@ -149,7 +149,7 @@ static const JanetReg math_cfuns[] = {
{
"math/log", janet_log,
JDOC("(math/log x)\n\n"
"Returns log base 2 of x.")
"Returns log base natural number of x.")
},
{
"math/log10", janet_log10,