summaryrefslogtreecommitdiff
path: root/libguile/filesys.c
diff options
context:
space:
mode:
authorTaylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com>2015-03-05 22:44:17 +0100
committerAndy Wingo <wingo@pobox.com>2016-05-22 19:09:47 +0200
commit704c9118933329bc270b0e58d7b4bc02ca359454 (patch)
treec84ee7039f94bfec4bcdb66a01e1adfabae815c0 /libguile/filesys.c
parent70d8ef786ac89cfa07a3e7d55df4beb6181a657e (diff)
downloadguile-704c9118933329bc270b0e58d7b4bc02ca359454.tar.gz
Correct docstring of 'symlink'.
* libguile/filesys.c (symlink): Correct the docstring, which had 'oldpath' and 'newpath' confused.
Diffstat (limited to 'libguile/filesys.c')
-rw-r--r--libguile/filesys.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libguile/filesys.c b/libguile/filesys.c
index 43d1be636..7674498a4 100644
--- a/libguile/filesys.c
+++ b/libguile/filesys.c
@@ -992,8 +992,8 @@ SCM_DEFINE (scm_fsync, "fsync", 1, 0, 0,
#ifdef HAVE_SYMLINK
SCM_DEFINE (scm_symlink, "symlink", 2, 0, 0,
(SCM oldpath, SCM newpath),
- "Create a symbolic link named @var{oldpath} with the value\n"
- "(i.e., pointing to) @var{newpath}. The return value is\n"
+ "Create a symbolic link named @var{newpath} with the value\n"
+ "(i.e., pointing to) @var{oldpath}. The return value is\n"
"unspecified.")
#define FUNC_NAME s_scm_symlink
{