guile-commits
[Top][All Lists]
Advanced

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

[Guile-commits] branch master updated: Fix incorrect docstring of mkdtem


From: Mike Gran
Subject: [Guile-commits] branch master updated: Fix incorrect docstring of mkdtemp!
Date: Tue, 19 Jan 2021 18:31:14 -0500

This is an automated email from the git hooks/post-receive script.

mike121 pushed a commit to branch master
in repository guile.

The following commit(s) were added to refs/heads/master by this push:
     new 758b319  Fix incorrect docstring of mkdtemp!
758b319 is described below

commit 758b31994cff582c7e8785b4cc2240dbf3573837
Author: Michael Gran <spk121@yahoo.com>
AuthorDate: Tue Jan 19 15:06:57 2021 -0800

    Fix incorrect docstring of mkdtemp!
    
    * libguile/filesys.c (scm_mkdtemp_x): fix docstring
---
 libguile/filesys.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/libguile/filesys.c b/libguile/filesys.c
index 3cd3446..baff7b4 100644
--- a/libguile/filesys.c
+++ b/libguile/filesys.c
@@ -1551,9 +1551,9 @@ SCM_DEFINE (scm_mkdtemp_x, "mkdtemp!", 1, 0, 0,
             "accordance with @var{tmpl}. The last 6 characters of the\n"
             "template must be XXXXXX\n"
             "\n"
-            "Upon success, the template string -- if mutable -- will be\n"
-            "modified in place with the name of the directory created.\n"
-            "The name will also be the return value.\n"
+            "Upon success, the template string, which must be mutable, will\n"
+            "be modified in place with the name of the directory created.\n"
+            "The return value is unspecified.\n"
             "\n"
             "An error may be thrown if the template is incorrect or if\n"
             "the directory could not be created.\n")



reply via email to

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