From 6a63b13d693c27170a3eb4d58ef5747be348d847 Mon Sep 17 00:00:00 2001 From: Calvin Rose Date: Sat, 21 Mar 2020 16:18:40 -0500 Subject: [PATCH] Fix os/link docstring - Address #323 --- src/core/os.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/os.c b/src/core/os.c index 4e14b6d5..243141c7 100644 --- a/src/core/os.c +++ b/src/core/os.c @@ -1271,8 +1271,8 @@ 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. The 3 optional paramater " - "enables a hard link over a soft link. Does not work on Windows.") + "Create a symlink from oldpath to newpath. The 3rd optional paramater " + "enables a symlink over a hard link. Does not work on Windows.") }, { "os/readlink", os_readlink,