From adbe361b9b3b1afffd95809d4dadc9049f0ecf9c Mon Sep 17 00:00:00 2001 From: John Gabriele Date: Sun, 6 Dec 2020 17:51:48 -0500 Subject: [PATCH] light markup in some docs in corelib --- src/core/corelib.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/core/corelib.c b/src/core/corelib.c index 1dfcf6e0..a5766eea 100644 --- a/src/core/corelib.c +++ b/src/core/corelib.c @@ -554,28 +554,28 @@ static const JanetReg corelib_cfuns[] = { "string", janet_core_string, JDOC("(string & parts)\n\n" "Creates a string by concatenating values together. Values are " - "converted to bytes via describe if they are not byte sequences. " + "converted to bytes via `describe` if they are not byte sequences. " "Returns the new string.") }, { "symbol", janet_core_symbol, JDOC("(symbol & xs)\n\n" "Creates a symbol by concatenating values together. Values are " - "converted to bytes via describe if they are not byte sequences. Returns " + "converted to bytes via `describe` if they are not byte sequences. Returns " "the new symbol.") }, { "keyword", janet_core_keyword, JDOC("(keyword & xs)\n\n" "Creates a keyword by concatenating values together. Values are " - "converted to bytes via describe if they are not byte sequences. Returns " + "converted to bytes via `describe` if they are not byte sequences. Returns " "the new keyword.") }, { "buffer", janet_core_buffer, JDOC("(buffer & xs)\n\n" "Creates a new buffer by concatenating values together. Values are " - "converted to bytes via describe if they are not byte sequences. Returns " + "converted to bytes via `describe` if they are not byte sequences. Returns " "the new buffer.") }, {