wingo pushed a commit to branch master
in repository guile.
commit 704c9118933329bc270b0e58d7b4bc02ca359454
Author: Taylan Ulrich Bayırlı/Kammer <[email protected]>
Date: Thu Mar 5 22:44:17 2015 +0100
Correct docstring of 'symlink'.
* libguile/filesys.c (symlink): Correct the docstring, which had
'oldpath' and 'newpath' confused.
---
libguile/filesys.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/libguile/filesys.c b/libguile/filesys.c
index 43d1be6..7674498 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
{