Skip to content

Commit

Permalink
Make alternative stand out a bit more.
Browse files Browse the repository at this point in the history
  • Loading branch information
lizmat committed Nov 1, 2018
1 parent 81474bf commit 5598f37
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/core.d/operators.pm6
Expand Up @@ -10,17 +10,17 @@ multi sub undefine(Hash \x) is raw { x = Empty }

sub infix:<<(<+)>> (|) {
die "(<+) was removed in v6.d, please use (<=) operator instead
or compile your code with 'use v6.c'"
or compile your code with 'use v6.c'"
}
sub infix:<>(|) {
die "≼ was removed in v6.d, please use ⊆ operator instead
or compile your code with 'use v6.c'"
or compile your code with 'use v6.c'"
}
sub infix:<<(>+)>> (|) {
die "(>+) was removed in v6.d, please use (>=) operator instead
or compile your code with 'use v6.c'"
or compile your code with 'use v6.c'"
}
sub infix:<>(|) {
die "≽ was removed in v6.d, please use ⊇ operator instead
or compile your code with 'use v6.c'"
or compile your code with 'use v6.c'"
}

0 comments on commit 5598f37

Please sign in to comment.