summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Gran <spk121@yahoo.com>2021-01-19 15:06:57 -0800
committerMichael Gran <spk121@yahoo.com>2021-01-19 15:06:57 -0800
commit758b31994cff582c7e8785b4cc2240dbf3573837 (patch)
treed63cb566e72d4ee237f11ed86be1a45d5203d197
parentd98e1d5e4fd9a8d3d37b81d6dc71edabb6b2adae (diff)
downloadguile-758b31994cff582c7e8785b4cc2240dbf3573837.tar.gz
Fix incorrect docstring of mkdtemp!
* libguile/filesys.c (scm_mkdtemp_x): fix docstring
-rw-r--r--libguile/filesys.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libguile/filesys.c b/libguile/filesys.c
index 3cd3446c8..baff7b4c2 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")