summaryrefslogtreecommitdiff
path: root/dist
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2011-01-21 09:28:46 +0000
committerNicholas Clark <nick@ccl4.org>2011-01-21 09:28:46 +0000
commitbcb1dae120c7be25d4b840d41f4af54fffe8d59d (patch)
treefb7ad97282d6fa1241d9d4e229c2c74f67e4d04f /dist
parent02f739158806d7975ddb99f2f4dc77cc4ff7be51 (diff)
downloadperl-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.pm6
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'