diff options
author | Karl Williamson <public@khwilliamson.com> | 2013-01-24 14:41:02 -0700 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2013-01-24 19:04:48 -0700 |
commit | f703fc96a75eab3db924e41a52531905784836de (patch) | |
tree | 3e1d1202c4d1a4efaa959f0af21a57e7babfcacd /dist/bignum | |
parent | e58c5aaf5fae1951e56c0433da91fbbfb31b620c (diff) | |
download | perl-f703fc96a75eab3db924e41a52531905784836de.tar.gz |
Fix various minor pod issues
These were all uncovered by the new Pod::Checker, not yet in core.
Fixing these will speed up debugging the new Checker.
Diffstat (limited to 'dist/bignum')
-rw-r--r-- | dist/bignum/lib/bigint.pm | 6 | ||||
-rw-r--r-- | dist/bignum/lib/bignum.pm | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/dist/bignum/lib/bigint.pm b/dist/bignum/lib/bigint.pm index 467a67d167..6bd69dbfe4 100644 --- a/dist/bignum/lib/bigint.pm +++ b/dist/bignum/lib/bigint.pm @@ -1,7 +1,7 @@ package bigint; use 5.006; -$VERSION = '0.31'; +$VERSION = '0.32'; use Exporter; @ISA = qw( Exporter ); @EXPORT_OK = qw( PI e bpi bexp hex oct ); @@ -367,7 +367,7 @@ return value of subroutines: 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" =head2 Options @@ -654,7 +654,7 @@ The following modules are currently used by bigint: Some cool command line examples to impress the Python crowd ;) You might want to compare them to the results under -Mbignum or -Mbigrat: - + perl -Mbigint -le 'print sqrt(33)' perl -Mbigint -le 'print 2*255' perl -Mbigint -le 'print 4.5+2*255' diff --git a/dist/bignum/lib/bignum.pm b/dist/bignum/lib/bignum.pm index 8b05dc9b02..14b45e4c29 100644 --- a/dist/bignum/lib/bignum.pm +++ b/dist/bignum/lib/bignum.pm @@ -1,7 +1,7 @@ package bignum; use 5.006; -$VERSION = '0.31'; +$VERSION = '0.32'; use Exporter; @ISA = qw( bigint ); @EXPORT_OK = qw( PI e bexp bpi hex oct ); @@ -619,7 +619,7 @@ The following modules are currently used by bignum: =head1 EXAMPLES Some cool command line examples to impress the Python crowd ;) - + perl -Mbignum -le 'print sqrt(33)' perl -Mbignum -le 'print 2*255' perl -Mbignum -le 'print 4.5+2*255' |