1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-18 01:30:27 +02:00

Small docstring fixes.

This commit is contained in:
Neil Jerram 2002-03-15 10:37:40 +00:00
parent 3939e9df35
commit bb2c02f237
10 changed files with 41 additions and 29 deletions

View file

@ -58,7 +58,7 @@
SCM_DEFINE (scm_string_p, "string?", 1, 0, 0,
(SCM obj),
"Return @code{#t} iff @var{obj} is a string, else @code{#f}.")
"Return @code{#t} if @var{obj} is a string, else @code{#f}.")
#define FUNC_NAME s_scm_string_p
{
return SCM_BOOL (SCM_STRINGP (obj));