From f4744a18c68b106eb2f76bedc66638c77fe137c6 Mon Sep 17 00:00:00 2001 From: sogaiu <983021772@users.noreply.github.com> Date: Tue, 2 Feb 2021 15:00:57 +0900 Subject: [PATCH] Tweak marshal docstring --- src/core/marsh.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/marsh.c b/src/core/marsh.c index 20b88408..7dc99d30 100644 --- a/src/core/marsh.c +++ b/src/core/marsh.c @@ -1428,9 +1428,9 @@ static const JanetReg marsh_cfuns[] = { "marshal", cfun_marshal, JDOC("(marshal x &opt reverse-lookup buffer)\n\n" "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 " - "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 " "unmarshalling.") },