1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-24 13:30:21 +02:00

Correct docstring of 'symlink'.

* libguile/filesys.c (symlink): Correct the docstring, which had
  'oldpath' and 'newpath' confused.
This commit is contained in:
Taylan Ulrich Bayırlı/Kammer 2015-03-05 22:44:17 +01:00 committed by Ludovic Courtès
parent 3b50be4546
commit bfdea17192

View file

@ -991,8 +991,8 @@ SCM_DEFINE (scm_fsync, "fsync", 1, 0, 0,
#ifdef HAVE_SYMLINK #ifdef HAVE_SYMLINK
SCM_DEFINE (scm_symlink, "symlink", 2, 0, 0, SCM_DEFINE (scm_symlink, "symlink", 2, 0, 0,
(SCM oldpath, SCM newpath), (SCM oldpath, SCM newpath),
"Create a symbolic link named @var{oldpath} with the value\n" "Create a symbolic link named @var{newpath} with the value\n"
"(i.e., pointing to) @var{newpath}. The return value is\n" "(i.e., pointing to) @var{oldpath}. The return value is\n"
"unspecified.") "unspecified.")
#define FUNC_NAME s_scm_symlink #define FUNC_NAME s_scm_symlink
{ {