Skip to content

Commit

Permalink
Tweak a couple of signatures that should have Mu in.
Browse files Browse the repository at this point in the history
  • Loading branch information
jnthn committed Feb 16, 2010
1 parent 4730a80 commit 2b2da10
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/operators.pm
Expand Up @@ -127,7 +127,7 @@ our multi infix:<max>(*@args) {
@args.max;
}

our multi infix=>»($key, $value) {
our multi infix=>»($key, Mu $value) {
Pair.new(key => $key, value => $value);
}

Expand All @@ -147,7 +147,7 @@ our sub hash(*@list, *%hash) {
%h
}

our multi infix:sym<//>($a, $b) {
our multi infix:sym<//>(Mu $a, Mu $b) {
$a.defined ?? $a !! $b
}

Expand Down

0 comments on commit 2b2da10

Please sign in to comment.