Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix incorrect exp proto.
  • Loading branch information
jnthn committed Jan 2, 2013
1 parent f63c42d commit 799d759
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/Numeric.pm
Expand Up @@ -54,7 +54,7 @@ proto sub log10($, $?) {*}
multi sub log10(Numeric $x) { $x.log(10e0) }
multi sub log10(Cool $x) { $x.Numeric.log(10e0) }

proto sub exp($) {*}
proto sub exp($, $?) {*}
multi sub exp(Numeric $x) { $x.exp }
multi sub exp(Numeric $x, Numeric $base) { $x.exp($base) }

Expand Down

0 comments on commit 799d759

Please sign in to comment.