From 1aeb317863d841d3e3f6cfa4ff2ae31c7a9a5f59 Mon Sep 17 00:00:00 2001 From: Calvin Rose Date: Fri, 3 Apr 2020 17:04:05 -0500 Subject: [PATCH] Revise, revise, revise, and proofread. --- src/core/os.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/core/os.c b/src/core/os.c index 20408fc1..6e75cca2 100644 --- a/src/core/os.c +++ b/src/core/os.c @@ -1343,9 +1343,10 @@ static const JanetReg os_cfuns[] = { { "os/link", os_link, JDOC("(os/link oldpath newpath &opt symlink)\n\n" - "Create a symlink from oldpath to newpath, returning nil. The third optional parameter " - "enables a symlink iff truthy. If the third optional parameter is falsey or not " - "provided, os/link creates a hard link. Does not work on Windows.") + "Create a link at newpath that points to oldpath and returns nil. " + "Iff symlink is truthy, creates a symlink. " + "Iff symlink is falsey or not provided, " + "creates a hard link. Does not work on Windows.") }, { "os/symlink", os_symlink,