1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-10 22:10:21 +02:00

Bettered wording for inf? and nan? procedures.

This commit is contained in:
Marius Vollmer 2002-06-19 11:41:13 +00:00
parent e540802f9c
commit 23de7b97e9

View file

@ -379,11 +379,11 @@ precision.
@deffn {Scheme Procedure} inf? x
Return @code{#t} if @var{x} is either @samp{+inf.0} or @samp{-inf.0},
code @var{#f} otherwise.
@code{#f} otherwise.
@end deffn
@deffn {Scheme Procedure} nan? x
Return @code{#t} if @var{x} is @samp{+nan.0}, code @var{#f} otherwise.
Return @code{#t} if @var{x} is @samp{+nan.0}, @code{#f} otherwise.
@end deffn
@node Complex Numbers