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-utility.texi | |
parent | e9381f58d1b0c9d8882328efecf938b45817e3dd (diff) | |
download | guile-a4b4fbbdaa3542e35ea436179200d071b57ff1ca.tar.gz |
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-utility.texi')
-rw-r--r-- | doc/ref/api-utility.texi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/ref/api-utility.texi b/doc/ref/api-utility.texi index 17694ecab..76c50b2ca 100644 --- a/doc/ref/api-utility.texi +++ b/doc/ref/api-utility.texi @@ -1,6 +1,6 @@ @c -*-texinfo-*- @c This is part of the GNU Guile Reference Manual. -@c Copyright (C) 1996, 1997, 2000, 2001, 2002, 2003, 2004, 2011, 2012 +@c Copyright (C) 1996, 1997, 2000, 2001, 2002, 2003, 2004, 2011, 2012, 2013 @c Free Software Foundation, Inc. @c See the file guile.texi for copying conditions. @@ -308,10 +308,10 @@ input. @deffn {Scheme Procedure} sorted? items less @deffnx {C Function} scm_sorted_p (items, less) -Return @code{#t} iff @var{items} is a list or vector such that, +Return @code{#t} if @var{items} is a list or vector such that, for each element @var{x} and the next element @var{y} of @var{items}, @code{(@var{less} @var{y} @var{x})} returns -@code{#f}. +@code{#f}. Otherwise return @code{#f}. @end deffn @deffn {Scheme Procedure} sort items less |