summaryrefslogtreecommitdiff
path: root/libguile/list.c
diff options
context:
space:
mode:
authorNeil Jerram <neil@ossau.uklinux.net>2001-03-23 16:14:47 +0000
committerNeil Jerram <neil@ossau.uklinux.net>2001-03-23 16:14:47 +0000
commita17bb5fdc22fae3b19c08ebd1becdf63fc929f17 (patch)
tree094a5330469fe5311855db37648f6fb3bd4e168e /libguile/list.c
parent028321d47378ba8a1765acc4395cf5e9bb7d6155 (diff)
downloadguile-a17bb5fdc22fae3b19c08ebd1becdf63fc929f17.tar.gz
* Fix docstring typos.
Diffstat (limited to 'libguile/list.c')
-rw-r--r--libguile/list.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/list.c b/libguile/list.c
index 5f809035d..d5b486bdf 100644
--- a/libguile/list.c
+++ b/libguile/list.c
@@ -99,7 +99,7 @@ SCM_DEFINE (scm_cons_star, "cons*", 1, 0, 1,
(SCM arg, SCM rest),
"Like @code{list}, but the last arg provides the tail of the\n"
"constructed list, returning @code{(cons @var{arg1} (cons\n"
- "@var{arg2} (cons @dots{} @var{argn}))). Requires at least one\n"
+ "@var{arg2} (cons @dots{} @var{argn})))}. Requires at least one\n"
"argument. If given one argument, that argument is returned as\n"
"result. This function is called @code{list*} in some other\n"
"Schemes and in Common LISP.")