summaryrefslogtreecommitdiff
path: root/libguile/srfi-13.c
diff options
context:
space:
mode:
authorRob Browning <rlb@defaultvalue.org>2020-09-26 17:26:19 -0500
committerRob Browning <rlb@defaultvalue.org>2021-01-17 13:15:45 -0600
commit859cd4eb9bde1a67f1e85aa09b7a18b9d567c47c (patch)
tree3a37eefde993029b6a6e0b2250ee8706a825bc6c /libguile/srfi-13.c
parent55ebf1b84a794ab908380d241215da9b40ab1f3e (diff)
downloadguile-859cd4eb9bde1a67f1e85aa09b7a18b9d567c47c.tar.gz
doc: Fix composition describing scm_reverse_list_to_string
* libguile/srfi-13.c (scm_reverse_list_to_string): Replace string->list with list->string in the composition explaning how it works. Thanks to Andrey Ivanov for reporting the problem. Closes: 34457
Diffstat (limited to 'libguile/srfi-13.c')
-rw-r--r--libguile/srfi-13.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/srfi-13.c b/libguile/srfi-13.c
index 801591775..0afe4dd31 100644
--- a/libguile/srfi-13.c
+++ b/libguile/srfi-13.c
@@ -330,7 +330,7 @@ scm_string_to_list (SCM str)
SCM_DEFINE (scm_reverse_list_to_string, "reverse-list->string", 1, 0, 0,
(SCM chrs),
- "An efficient implementation of @code{(compose string->list\n"
+ "An efficient implementation of @code{(compose list->string\n"
"reverse)}:\n"
"\n"
"@smalllisp\n"