diff options
author | Jason Earl <jearl@notengoamigos.org> | 2013-03-10 22:29:18 +0100 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2013-03-10 22:29:18 +0100 |
commit | a4b4fbbdaa3542e35ea436179200d071b57ff1ca (patch) | |
tree | bb2bbf36dac2a0e8ebe3201b77864a9beea4d673 /doc/ref/api-smobs.texi | |
parent | e9381f58d1b0c9d8882328efecf938b45817e3dd (diff) |
excise use of "iff" in the manual
* doc/ref/api-compound.texi:
* doc/ref/api-control.texi:
* doc/ref/api-data.texi:
* doc/ref/api-macros.texi:
* doc/ref/api-modules.texi:
* doc/ref/api-procedures.texi:
* doc/ref/api-scheduling.texi:
* doc/ref/api-smobs.texi:
* doc/ref/api-undocumented.texi:
* doc/ref/api-utility.texi:
* doc/ref/compiler.texi:
* doc/ref/intro.texi:
* doc/ref/scheme-using.texi:
* doc/ref/sxml.texi:
* doc/ref/web.texi: Change uses of "iff" to "if, otherwise". Fixes bug
10302.
Diffstat (limited to 'doc/ref/api-smobs.texi')
-rw-r--r-- | doc/ref/api-smobs.texi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/ref/api-smobs.texi b/doc/ref/api-smobs.texi index cb2034ce1..345bf7cbd 100644 --- a/doc/ref/api-smobs.texi +++ b/doc/ref/api-smobs.texi @@ -124,9 +124,9 @@ Else, signal an error. @end deftypefn @deftypefn {C Macro} int SCM_SMOB_PREDICATE (scm_t_bits tag, SCM exp) -Return true iff @var{exp} is a smob instance of the type indicated by -@var{tag}. The expression @var{exp} can be evaluated more than once, -so it shouldn't contain any side effects. +Return true if @var{exp} is a smob instance of the type indicated by +@var{tag}, or false otherwise. The expression @var{exp} can be +evaluated more than once, so it shouldn't contain any side effects. @end deftypefn @deftypefn {C Function} SCM scm_new_smob (scm_t_bits tag, void *data) |