Skip to content

Commit

Permalink
Make verbatim pod in bigint.pm fit in 80 columns
Browse files Browse the repository at this point in the history
  • Loading branch information
Father Chrysostomos committed Aug 1, 2011
1 parent 8965f53 commit ba048c2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
8 changes: 4 additions & 4 deletions 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 );
Expand Down Expand Up @@ -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
Expand Down
1 change: 0 additions & 1 deletion t/porting/known_pod_issues.dat
Expand Up @@ -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
Expand Down

0 comments on commit ba048c2

Please sign in to comment.