1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-16 08:40:19 +02:00

Small docstring fixes.

This commit is contained in:
Neil Jerram 2002-03-15 10:33:37 +00:00
parent 89a01d40f5
commit 2af6ac9aec
8 changed files with 45 additions and 15 deletions

View file

@ -240,7 +240,7 @@ scm_struct_init (SCM handle, SCM layout, scm_t_bits * mem, int tail_elts, SCM in
SCM_DEFINE (scm_struct_p, "struct?", 1, 0, 0,
(SCM x),
"Return @code{#t} iff @var{obj} is a structure object, else\n"
"Return @code{#t} iff @var{x} is a structure object, else\n"
"@code{#f}.")
#define FUNC_NAME s_scm_struct_p
{
@ -250,7 +250,7 @@ SCM_DEFINE (scm_struct_p, "struct?", 1, 0, 0,
SCM_DEFINE (scm_struct_vtable_p, "struct-vtable?", 1, 0, 0,
(SCM x),
"Return @code{#t} iff obj is a vtable structure.")
"Return @code{#t} iff @var{x} is a vtable structure.")
#define FUNC_NAME s_scm_struct_vtable_p
{
SCM layout;