Skip to content

Commit 9b9b757

Browse files
committed
Use more precise wording in eqv docs
1 parent 5fc5e83 commit 9b9b757

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/Language/operators.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1624,7 +1624,7 @@ Returns C<True> if the first argument is larger than the second.
16241624
sub infix:<eqv>(Any, Any)
16251625
16261626
X<Equivalence operator>. Returns C<True> if the two arguments are structurally
1627-
the same, i.e. from the same type and (recursively) contain the same values.
1627+
the same, i.e. from the same type and (recursively) contain equivalent values.
16281628
16291629
say [1, 2, 3] eqv [1, 2, 3]; # OUTPUT: «True␤»
16301630
say Any eqv Any; # OUTPUT: «True␤»

0 commit comments

Comments
 (0)