1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 03:30:27 +02:00

Fix incorrect docstring of mkdtemp!

* libguile/filesys.c (scm_mkdtemp_x): fix docstring
This commit is contained in:
Michael Gran 2021-01-19 15:06:57 -08:00
parent d98e1d5e4f
commit 758b31994c

View file

@ -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")