From ba048c2476d2ae91d15aad15f8e9369dce2d7b1b Mon Sep 17 00:00:00 2001 From: Father Chrysostomos Date: Sun, 31 Jul 2011 22:25:47 -0700 Subject: [PATCH] Make verbatim pod in bigint.pm fit in 80 columns --- dist/bignum/lib/bigint.pm | 8 ++++---- t/porting/known_pod_issues.dat | 1 - 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/dist/bignum/lib/bigint.pm b/dist/bignum/lib/bigint.pm index e0fcf73..926742a 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 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 diff --git a/t/porting/known_pod_issues.dat b/t/porting/known_pod_issues.dat index dea7c8e..77a211e 100644 --- a/t/porting/known_pod_issues.dat +++ b/t/porting/known_pod_issues.dat @@ -133,7 +133,6 @@ YAML YAML::Syck YAML::Tiny dist/bignum/lib/bigint.pm Apparent broken link 1 -dist/bignum/lib/bigint.pm Verbatim line length including indents exceeds 80 by 1 dist/bignum/lib/bignum.pm Apparent broken link 1 dist/bignum/lib/bignum.pm Verbatim line length including indents exceeds 80 by 1 dist/bignum/lib/bigrat.pm Apparent broken link 1 -- 1.8.3.1