summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTAKAI Kousuke <62541129+t-a-k@users.noreply.github.com>2022-01-14 02:00:33 +0900
committerJames E Keenan <jkeenan@cpan.org>2022-02-15 18:29:14 -0500
commit265e8585296781ded96e1e99feaeb5f5b5bc4592 (patch)
treec18cff894eafc2ad31b21eb2c97583317b994b2e
parent57a7a910f006763ed05df280eb48aa350d011f7e (diff)
downloadperl-265e8585296781ded96e1e99feaeb5f5b5bc4592.tar.gz
POSIX.pod: wording fix in the description of testing NaN-ness
Equality operators test equality, not equivalence.
-rw-r--r--ext/POSIX/lib/POSIX.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/POSIX/lib/POSIX.pod b/ext/POSIX/lib/POSIX.pod
index 5dbf54381c..5dacb62cc3 100644
--- a/ext/POSIX/lib/POSIX.pod
+++ b/ext/POSIX/lib/POSIX.pod
@@ -830,7 +830,7 @@ L<equality operators|perlop/"Equality Operators"> (C<==> or C<!=>), as in
print "x is not a NaN\n" if $x == $x;
-since the C<NaN> is not equivalent to anything, B<including itself>.
+since the C<NaN> is not equal to anything, B<including itself>.
See also L</nan>, L</NaN>, L</isinf>, and L</fpclassify>.