summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJorge Gomez <jgart@dismail.de>2023-04-05 20:30:11 +0200
committerMikael Djurfeldt <mikael@djurfeldt.com>2023-04-05 20:30:11 +0200
commit1ae50a7f80654f04d93d900e17f3160205700a75 (patch)
treef0057f5ca4b11dbc47e749fc6a3db3c9edeb3271
parente9c8ca341b9d0a2b4489c5e3149a474ee610d42e (diff)
downloadguile-1ae50a7f80654f04d93d900e17f3160205700a75.tar.gz
Fix typo in append procedure documentation
Fixes <https://bugs.gnu.org/62456>. Signed-off-by: Mikael Djurfeldt <mikael@djurfeldt.com>
-rw-r--r--libguile/list.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/list.c b/libguile/list.c
index 82aab8a5d..cd05e77b8 100644
--- a/libguile/list.c
+++ b/libguile/list.c
@@ -224,7 +224,7 @@ SCM_DEFINE (scm_length, "length", 1, 0, 0,
SCM_DEFINE (scm_append, "append", 0, 0, 1,
(SCM args),
- "Return a list consisting of the elements the lists passed as\n"
+ "Return a list consisting of the elements of the lists passed as\n"
"arguments.\n"
"@lisp\n"
"(append '(x) '(y)) @result{} (x y)\n"