diff options
author | Nicholas Clark <nick@ccl4.org> | 2011-01-21 09:28:46 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2011-01-21 09:28:46 +0000 |
commit | bcb1dae120c7be25d4b840d41f4af54fffe8d59d (patch) | |
tree | fb7ad97282d6fa1241d9d4e229c2c74f67e4d04f /dist | |
parent | 02f739158806d7975ddb99f2f4dc77cc4ff7be51 (diff) | |
download | perl-bcb1dae120c7be25d4b840d41f4af54fffe8d59d.tar.gz |
Remove training whitespace in Pod which can confuse pod/buildtoc
Some whitespace is being interpreted as "not a blank line" causing it (and
possibly other parsers) to assume that subsequent text is part of the preceding
=head or =item
Diffstat (limited to 'dist')
-rw-r--r-- | dist/bignum/lib/bigrat.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dist/bignum/lib/bigrat.pm b/dist/bignum/lib/bigrat.pm index e3f5f8c5b1..5af53cd243 100644 --- a/dist/bignum/lib/bigrat.pm +++ b/dist/bignum/lib/bigrat.pm @@ -1,7 +1,7 @@ package bigrat; use 5.006; -$VERSION = '0.26'; +$VERSION = '0.27'; require Exporter; @ISA = qw( bigint ); @EXPORT_OK = qw( PI e bpi bexp ); @@ -539,11 +539,11 @@ Compare this to: =back =head1 EXAMPLES - + perl -Mbigrat -le 'print sqrt(33)' perl -Mbigrat -le 'print 2*255' perl -Mbigrat -le 'print 4.5+2*255' - perl -Mbigrat -le 'print 3/7 + 5/7 + 8/3' + perl -Mbigrat -le 'print 3/7 + 5/7 + 8/3' perl -Mbigrat -le 'print 12->is_odd()'; perl -Mbignum=l,GMP -le 'print 7 ** 7777' |