1
0
mirror of https://github.com/janet-lang/janet synced 2025-06-22 08:24:11 +00:00

Tweak marshal docstring

This commit is contained in:
sogaiu 2021-02-02 15:00:57 +09:00
parent 259d5fabd9
commit f4744a18c6

View File

@ -1428,9 +1428,9 @@ static const JanetReg marsh_cfuns[] = {
"marshal", cfun_marshal, "marshal", cfun_marshal,
JDOC("(marshal x &opt reverse-lookup buffer)\n\n" JDOC("(marshal x &opt reverse-lookup buffer)\n\n"
"Marshal a value into a buffer and return the buffer. The buffer " "Marshal a value into a buffer and return the buffer. The buffer "
"can the later be unmarshalled to reconstruct the initial value. " "can then later be unmarshalled to reconstruct the initial value. "
"Optionally, one can pass in a reverse lookup table to not marshal " "Optionally, one can pass in a reverse lookup table to not marshal "
"aliased values that are found in the table. Then a forward" "aliased values that are found in the table. Then a forward "
"lookup table can be used to recover the original value when " "lookup table can be used to recover the original value when "
"unmarshalling.") "unmarshalling.")
}, },