Skip to content

Commit c51db1c

Browse files
authored
Merge pull request #1081 from ianthehenry/log-gamma-docstring
remove quotes in math/log-gamma docstring
2 parents 3563f8c + 4e7930f commit c51db1c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/math.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ JANET_DEFINE_MATHOP(floor, floor, "Returns the largest integer value number that
289289
JANET_DEFINE_MATHOP(trunc, trunc, "Returns the integer between x and 0 nearest to x.")
290290
JANET_DEFINE_MATHOP(round, round, "Returns the integer nearest to x.")
291291
JANET_DEFINE_MATHOP(gamma, tgamma, "Returns gamma(x).")
292-
JANET_DEFINE_NAMED_MATHOP(lgamma, "log-gamma", lgamma, "Returns log-gamma(x).")
292+
JANET_DEFINE_NAMED_MATHOP(lgamma, log-gamma, lgamma, "Returns log-gamma(x).")
293293
JANET_DEFINE_MATHOP(log1p, log1p, "Returns (log base e of x) + 1 more accurately than (+ (math/log x) 1)")
294294
JANET_DEFINE_MATHOP(erf, erf, "Returns the error function of x.")
295295
JANET_DEFINE_MATHOP(erfc, erfc, "Returns the complementary error function of x.")

0 commit comments

Comments
 (0)