Skip to content

Commit da06458

Browse files
committed
Merge branch 'master' of git://github.com/perl6/std
2 parents 3725e26 + 7deb9d7 commit da06458

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

CORE.setting

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -643,15 +643,15 @@ my proto sub infix:<∋>($, $ --> Bool) is equiv(&infix:<==>) is export {*}
643643
my proto sub infix:<(cont)>($a, $b --> Bool) {*}
644644
my proto sub infix:<∌>($a, $b --> Bool) is equiv(&infix:<==>) is export {*}
645645

646-
my proto sub infix:<∪>(Any $a, Any $b --> Set) is equiv(&infix:<X>) is export {*}
647-
my proto sub infix:<(|)>($a, $b --> Set) is equiv(&infix:<X>) is export {*}
646+
my proto sub infix:<∪>(Any $a, Any $b --> Set) is equiv(&infix:<|>) is export {*}
647+
my proto sub infix:<(|)>($a, $b --> Set) is equiv(&infix:<|>) is export {*}
648648

649-
my proto sub infix:<∩>(Any $a, Any $b --> Set) is equiv(&infix:<X>) is export {*}
650-
my proto sub infix:<(&)>($a, $b --> Set) is equiv(&infix:<X>) is export {*}
649+
my proto sub infix:<∩>(Any $a, Any $b --> Set) is equiv(&infix:<&>) is export {*}
650+
my proto sub infix:<(&)>($a, $b --> Set) is equiv(&infix:<&>) is export {*}
651651

652-
my proto sub infix:<(-)>(Any $a, Any $b --> Set) is equiv(&infix:<X>) is export {*}
652+
my proto sub infix:<(-)>(Any $a, Any $b --> Set) is equiv(&infix:<^>) is export {*}
653653

654-
my proto sub infix:<(^)>(Any $a, Any $b --> Set) is equiv(&infix:<X>) is export {*}
654+
my proto sub infix:<(^)>(Any $a, Any $b --> Set) is equiv(&infix:<^>) is export {*}
655655

656656
my proto sub infix:<⊆>($, $ --> Bool) is equiv(&infix:<==>) is export {*}
657657
my proto sub infix:['(<=)']($a, $b --> Bool) is equiv(&infix:<==>) is export {*}

0 commit comments

Comments
 (0)