Skip to content

Commit

Permalink
Fix a proto.
Browse files Browse the repository at this point in the history
  • Loading branch information
jnthn committed Mar 15, 2013
1 parent cf49051 commit 5c49111
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/core/Numeric.pm
Expand Up @@ -170,9 +170,9 @@ proto sub ceiling($) is pure { * }
multi sub ceiling($a) { $a.Numeric.ceiling }
multi sub ceiling(Numeric $a) { $a.ceiling }

proto sub round($) is pure { * }
multi sub round($a) { $a.Numeric.round }
multi sub round(Numeric $a) { $a.round }
proto sub round($, $?) is pure { * }
multi sub round($a) { $a.Numeric.round }
multi sub round(Numeric $a) { $a.round }
multi sub round(Numeric $a, $scale) { $a.round($scale) }

proto infix:<+>($a?, $b?) is pure { * }
Expand Down

0 comments on commit 5c49111

Please sign in to comment.