diff options
author | Stefan Jahn <stefan@lkcc.org> | 2001-11-05 21:12:33 +0000 |
---|---|---|
committer | Stefan Jahn <stefan@lkcc.org> | 2001-11-05 21:12:33 +0000 |
commit | 0233bfc11b16178b4453fa941bf824270399c6a7 (patch) | |
tree | 5e3942cbbec29585ec79354924adc92d242ef456 /libguile/struct.c | |
parent | 8f99e3f38b575f8001cdc92241959c30930c6828 (diff) | |
download | guile-0233bfc11b16178b4453fa941bf824270399c6a7.tar.gz |
2001-11-05 Stefan Jahn <stefan@lkcc.org>
* struct.c (s_scm_struct_vtable_p): Corrected docstring.
Diffstat (limited to 'libguile/struct.c')
-rw-r--r-- | libguile/struct.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libguile/struct.c b/libguile/struct.c index 37cc7422d..27eecebe4 100644 --- a/libguile/struct.c +++ b/libguile/struct.c @@ -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; |