From cdbc74184f98a5008ebc1bd5eea746730ec9bbc7 Mon Sep 17 00:00:00 2001 From: Neil Jerram Date: Fri, 18 Aug 2000 09:30:54 +0000 Subject: * Docstring fixes - adding texinfo markup and removing extraneous trailing newlines. --- libguile/boolean.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libguile/boolean.c') diff --git a/libguile/boolean.c b/libguile/boolean.c index 00d6a165a..6807d16b1 100644 --- a/libguile/boolean.c +++ b/libguile/boolean.c @@ -54,7 +54,7 @@ SCM_DEFINE (scm_not, "not", 1, 0, 0, (SCM x), - "Return #t iff X is #f, else return #f.\n") + "Return @code{#t} iff @var{x} is @code{#f}, else return @code{#f}.") #define FUNC_NAME s_scm_not { return SCM_BOOL(SCM_FALSEP(x)); @@ -64,7 +64,7 @@ SCM_DEFINE (scm_not, "not", 1, 0, 0, SCM_DEFINE (scm_boolean_p, "boolean?", 1, 0, 0, (SCM obj), - "Return #t iff OBJ is either #t or #f.\n") + "Return @code{#t} iff @var{obj} is either @code{#t} or @code{#f}.") #define FUNC_NAME s_scm_boolean_p { return SCM_BOOL (SCM_BOOLP (obj)); -- cgit v1.2.3