Skip to content

Commit f705a6f

Browse files
authored
Reword is-deeply
Do not say it uses `eqv` operator. What it uses is an internal detail. Addresses https://rt.perl.org/Ticket/Display.html?id=130362
1 parent c653991 commit f705a6f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

doc/Language/testing.pod6

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -361,10 +361,10 @@ tested independently, and the C<is-approx> test will succeed only if both pass.
361361
362362
=item X<is-deeply($value, $expected, $description?)|is-deeply>
363363
364-
Marks a test as passed if C<$value> and C<$expected> compare positively with
365-
the L<eqv operator|/routine/eqv>. This is the best way to check for equality of
366-
(deep) data structures. The function accepts an optional C<$description> of
367-
the test.
364+
Marks a test as passed if C<$value> and C<$expected> are equivalent, using the
365+
same semantics as the L<eqv operator|/routine/eqv>. This is the best way to
366+
check for equality of (deep) data structures. The function accepts an optional
367+
C<$description> of the test.
368368
369369
=begin code
370370
use v6;

0 commit comments

Comments
 (0)