1
0
mirror of https://github.com/janet-lang/janet synced 2025-07-23 04:12:54 +00:00

Tweak fiber/last-value docstring

This commit is contained in:
sogaiu 2021-08-27 17:29:20 +09:00
parent 0ab96b8e47
commit 1d7390fa7c

View File

@ -642,7 +642,7 @@ JANET_CORE_FN(cfun_fiber_can_resume,
} }
JANET_CORE_FN(cfun_fiber_last_value, JANET_CORE_FN(cfun_fiber_last_value,
"(fiber/last-value", "(fiber/last-value)",
"Get the last value returned or signaled from the fiber.") { "Get the last value returned or signaled from the fiber.") {
janet_fixarity(argc, 1); janet_fixarity(argc, 1);
JanetFiber *fiber = janet_getfiber(argv, 0); JanetFiber *fiber = janet_getfiber(argv, 0);