guile-devel
[Top][All Lists]
Advanced

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

[PATCH] Correct docstring of 'symlink'


From: Taylan Ulrich Bayırlı/Kammer
Subject: [PATCH] Correct docstring of 'symlink'
Date: Fri, 20 Feb 2015 21:15:03 +0100
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.4 (gnu/linux)

>From 613c00221bf4e2bd5e809aebd792ed7c056455b3 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Taylan=20Ulrich=20Bay=C4=B1rl=C4=B1/Kammer?=
 <address@hidden>
Date: Fri, 20 Feb 2015 21:11:03 +0100
Subject: [PATCH] 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 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
 {
-- 
2.2.1




reply via email to

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