summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/Math/Decimal/FastPP.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Math/Decimal/FastPP.pm b/lib/Math/Decimal/FastPP.pm
index 85fe1d8..8c97e4d 100644
--- a/lib/Math/Decimal/FastPP.pm
+++ b/lib/Math/Decimal/FastPP.pm
@@ -4,7 +4,7 @@ Math::Decimal::FastPP - Fast pure-Perl decimal math
=head1 SYNOPSIS
- use Math::Decimal::FastPP;
+ use Math::Decimal::FastPP qw(dadd dmul drhtz drhfz);
$a = dadd($a, "1.23"); # $a += 1.23
$c = dmul($a, $b); # $c = $a * $b
@@ -76,7 +76,7 @@ use strict;
use warnings;
use Exporter qw(import);
-our @EXPORT = qw(dadd dmul drhtz drhfz);
+our @EXPORT_OK = qw(dadd dmul drhtz drhfz);
our $VERSION = "0.001";