Skip to content

Commit

Permalink
Switch Mu $a to Mu \$a in the notresults and reverseargs functions, a…
Browse files Browse the repository at this point in the history
…s per jnthn++'s advice.
  • Loading branch information
colomon committed Mar 21, 2010
1 parent d296602 commit 2067a57
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/core/metaops.pm
@@ -1,9 +1,8 @@
our multi sub notresults(&op, Mu $a, Mu $b) {
say &op;
our multi sub notresults(&op, Mu \$a, Mu \$b) {
!(&op($a, $b));
}

our multi sub reverseargs(&op, Mu $a, Mu $b) {
our multi sub reverseargs(&op, Mu \$a, Mu \$b) {
&op($b, $a);
}

Expand Down

0 comments on commit 2067a57

Please sign in to comment.