guile-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Guile-commits] 01/01: Correct docstring of 'symlink'.


From: Ludovic Courtès
Subject: [Guile-commits] 01/01: Correct docstring of 'symlink'.
Date: Thu, 05 Mar 2015 21:45:42 +0000

civodul pushed a commit to branch stable-2.0
in repository guile.

commit bfdea1719255a42c59b227dd4f8bdec51400d726
Author: Taylan Ulrich Bayırlı/Kammer <address@hidden>
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 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/libguile/filesys.c b/libguile/filesys.c
index b473af8..48232e8 100644
--- a/libguile/filesys.c
+++ b/libguile/filesys.c
@@ -991,8 +991,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
 {



reply via email to

[Prev in Thread] Current Thread [Next in Thread]