diff options
author | Father Chrysostomos <sprout@cpan.org> | 2011-07-31 22:25:47 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2011-07-31 22:28:34 -0700 |
commit | ba048c2476d2ae91d15aad15f8e9369dce2d7b1b (patch) | |
tree | dd47b0c860503de58289d1fa3072e44c218abde5 /dist/bignum | |
parent | 8965f5324ad556c313c9a4251014e73c99f1614d (diff) | |
download | perl-ba048c2476d2ae91d15aad15f8e9369dce2d7b1b.tar.gz |
Make verbatim pod in bigint.pm fit in 80 columns
Diffstat (limited to 'dist/bignum')
-rw-r--r-- | dist/bignum/lib/bigint.pm | 8 |
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 |