From cf4d19a8eabc36f979ff5554e12e8ae1523ce65d Mon Sep 17 00:00:00 2001 From: sogaiu <983021772@users.noreply.github.com> Date: Mon, 22 Jan 2024 22:16:14 +0900 Subject: [PATCH] Cosmetically tweak module/expand-path docstring --- src/core/corelib.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/core/corelib.c b/src/core/corelib.c index cba82025..c4dec6f0 100644 --- a/src/core/corelib.c +++ b/src/core/corelib.c @@ -110,12 +110,12 @@ JANET_CORE_FN(janet_core_expand_path, "(module/expand-path path template)", "Expands a path template as found in `module/paths` for `module/find`. " "This takes in a path (the argument to require) and a template string, " - "to expand the path to a path that can be " - "used for importing files. The replacements are as follows:\n\n" + "to expand the path to a path that can be used for importing files. " + "The replacements are as follows:\n\n" "* :all: -- the value of path verbatim.\n\n" - "* :@all: -- Same as :all:, but if `path` starts with the @ character,\n" - " the first path segment is replaced with a dynamic binding\n" - " `(dyn )`.\n\n" + "* :@all: -- Same as :all:, but if `path` starts with the @ character, " + "the first path segment is replaced with a dynamic binding " + "`(dyn )`.\n\n" "* :cur: -- the current file, or (dyn :current-file)\n\n" "* :dir: -- the directory containing the current file\n\n" "* :name: -- the name component of path, with extension if given\n\n"