summaryrefslogtreecommitdiff
path: root/dist/bignum/lib/bigint.pm
diff options
context:
space:
mode:
Diffstat (limited to 'dist/bignum/lib/bigint.pm')
-rw-r--r--dist/bignum/lib/bigint.pm8
1 files changed, 4 insertions, 4 deletions
diff --git a/dist/bignum/lib/bigint.pm b/dist/bignum/lib/bigint.pm
index e0fcf73c1a..926742ac31 100644
--- a/dist/bignum/lib/bigint.pm
+++ b/dist/bignum/lib/bigint.pm
@@ -1,7 +1,7 @@
package bigint;
use 5.006;
-$VERSION = '0.28';
+$VERSION = '0.29';
use Exporter;
@ISA = qw( Exporter );
@EXPORT_OK = qw( PI e bpi bexp );
@@ -353,10 +353,10 @@ In practice this makes seldom a difference as B<parts and results> of
expressions will be truncated anyway, but this can, for instance, affect the
return value of subroutines:
- sub three_integer { use integer; return 3.2; }
- sub three_bigint { use bigint; return 3.2; }
+ sub three_integer { use integer; return 3.2; }
+ sub three_bigint { use bigint; return 3.2; }
- print three_integer(), " ", three_bigint(),"\n"; # prints "3.2 3"
+ print three_integer(), " ", three_bigint(),"\n"; # prints "3.2 3"
=head2 Options