1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 11:40:18 +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 Andy Wingo
parent 70d8ef786a
commit 704c911893

View file

@ -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
{