From 942a1aaac681bd10b904b85d9f7ce39cf2b0764c Mon Sep 17 00:00:00 2001 From: sogaiu <983021772@users.noreply.github.com> Date: Sat, 27 Jan 2024 21:20:27 +0900 Subject: [PATCH] Address #1370 --- src/core/corelib.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/corelib.c b/src/core/corelib.c index c4dec6f0..e6a60d7b 100644 --- a/src/core/corelib.c +++ b/src/core/corelib.c @@ -116,8 +116,8 @@ JANET_CORE_FN(janet_core_expand_path, "* :@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" + "* :cur: -- the directory portion, if any, of (dyn :current-file)\n\n" + "* :dir: -- the directory portion, if any, of the path argument\n\n" "* :name: -- the name component of path, with extension if given\n\n" "* :native: -- the extension used to load natives, .so or .dll\n\n" "* :sys: -- the system path, or (dyn :syspath)") {