summaryrefslogtreecommitdiff
path: root/libguile/pairs.c
diff options
context:
space:
mode:
authorMartin Grabmüller <mgrabmue@cs.tu-berlin.de>2001-04-03 13:19:05 +0000
committerMartin Grabmüller <mgrabmue@cs.tu-berlin.de>2001-04-03 13:19:05 +0000
commit1e6808ea204cef454e41af1e2f309100ab99e9e1 (patch)
treefb93c3098d7dd4e7af175dbde98b5dc41dcd7c0d /libguile/pairs.c
parentae9f3a15826847d280f69b179c2e09776892a9c6 (diff)
downloadguile-1e6808ea204cef454e41af1e2f309100ab99e9e1.tar.gz
Correct, update, improve and clean up a lot of docstrings in order to make
the documentation much more consistent.
Diffstat (limited to 'libguile/pairs.c')
-rw-r--r--libguile/pairs.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/libguile/pairs.c b/libguile/pairs.c
index 070d08da2..0dee9b6f6 100644
--- a/libguile/pairs.c
+++ b/libguile/pairs.c
@@ -56,9 +56,9 @@
SCM_DEFINE (scm_cons, "cons", 2, 0, 0,
(SCM x, SCM y),
- "Returns a newly allocated pair whose car is @var{x} and whose cdr is\n"
- "@var{y}. The pair is guaranteed to be different (in the sense of\n"
- "@code{eqv?}) from every previously existing object.")
+ "Return a newly allocated pair whose car is @var{x} and whose\n"
+ "cdr is @var{y}. The pair is guaranteed to be different (in the\n"
+ "sense of @code{eq?}) from every previously existing object.")
#define FUNC_NAME s_scm_cons
{
SCM z;
@@ -90,7 +90,8 @@ scm_cons2 (SCM w, SCM x, SCM y)
SCM_DEFINE (scm_pair_p, "pair?", 1, 0, 0,
(SCM x),
- "Returns @code{#t} if @var{x} is a pair; otherwise returns @code{#f}.")
+ "Return @code{#t} if @var{x} is a pair; otherwise return\n"
+ "@code{#f}.")
#define FUNC_NAME s_scm_pair_p
{
return SCM_BOOL (SCM_CONSP (x));