1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 03:40:34 +02:00

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
This commit is contained in:
Rob Browning 2020-09-26 17:26:19 -05:00
parent 55ebf1b84a
commit 859cd4eb9b
2 changed files with 2 additions and 1 deletions

1
THANKS
View file

@ -115,6 +115,7 @@ For fixes or providing information which led to a fix:
Ales Hvezda Ales Hvezda
Arun Isaac Arun Isaac
Stefan Israelsson Tampe Stefan Israelsson Tampe
Andrey Ivanov
Peter Ivanyi Peter Ivanyi
Wolfgang Jaehrling Wolfgang Jaehrling
Aubrey Jaffer Aubrey Jaffer

View file

@ -330,7 +330,7 @@ scm_string_to_list (SCM str)
SCM_DEFINE (scm_reverse_list_to_string, "reverse-list->string", 1, 0, 0, SCM_DEFINE (scm_reverse_list_to_string, "reverse-list->string", 1, 0, 0,
(SCM chrs), (SCM chrs),
"An efficient implementation of @code{(compose string->list\n" "An efficient implementation of @code{(compose list->string\n"
"reverse)}:\n" "reverse)}:\n"
"\n" "\n"
"@smalllisp\n" "@smalllisp\n"