From 859cd4eb9bde1a67f1e85aa09b7a18b9d567c47c Mon Sep 17 00:00:00 2001 From: Rob Browning Date: Sat, 26 Sep 2020 17:26:19 -0500 Subject: [PATCH] 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 --- THANKS | 1 + libguile/srfi-13.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/THANKS b/THANKS index a4fad6e08..77eef9175 100644 --- a/THANKS +++ b/THANKS @@ -115,6 +115,7 @@ For fixes or providing information which led to a fix: Ales Hvezda Arun Isaac Stefan Israelsson Tampe + Andrey Ivanov Peter Ivanyi Wolfgang Jaehrling Aubrey Jaffer 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"