Skip to content

Commit

Permalink
Fix infix:<!=> copy/paste glitch.
Browse files Browse the repository at this point in the history
  • Loading branch information
colomon committed Jul 6, 2011
1 parent e6f88ff commit 5cd26f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/Numeric.pm
Expand Up @@ -106,7 +106,7 @@ multi infix:<==>($x?) { Bool::True }
multi infix:<==>(\$a, \$b) { $a.Numeric == $b.Numeric }

proto infix:<!=>(|$) { * }
multi infix:<==>($x?) { Bool::True }
multi infix:<!=>($x?) { Bool::True }
multi infix:<!=>(\$a, \$b) { $a.Numeric != $b.Numeric }

proto infix:«<»(|$) { * }
Expand Down

0 comments on commit 5cd26f6

Please sign in to comment.