diff options
author | Father Chrysostomos <sprout@cpan.org> | 2011-08-09 06:26:31 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2011-08-09 08:34:27 -0700 |
commit | b877fea2fc789be8bb0df2db93ffe5c1ecb4fb33 (patch) | |
tree | 07b27be1e65c7e4e8cbf348ff2b5cbe73955cd71 /dist | |
parent | 2f03b6be283ae09fca92d09e4e393d99ef1c38d4 (diff) | |
download | perl-b877fea2fc789be8bb0df2db93ffe5c1ecb4fb33.tar.gz |
Keep verbatim pod in Data::Dumper within 80 cols
Diffstat (limited to 'dist')
-rw-r--r-- | dist/Data-Dumper/Dumper.pm | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/dist/Data-Dumper/Dumper.pm b/dist/Data-Dumper/Dumper.pm index d30c66cc60..748dd545f4 100644 --- a/dist/Data-Dumper/Dumper.pm +++ b/dist/Data-Dumper/Dumper.pm @@ -9,7 +9,7 @@ package Data::Dumper; -$VERSION = '2.131'; # Don't forget to set version and release date in POD! +$VERSION = '2.132'; # Don't forget to set version and release date in POD! #$| = 1; @@ -1106,20 +1106,20 @@ distribution for more examples.) print($@) if $@; print Dumper($boo), Dumper($bar); # pretty print (no array indices) - $Data::Dumper::Terse = 1; # don't output names where feasible - $Data::Dumper::Indent = 0; # turn off all pretty print + $Data::Dumper::Terse = 1; # don't output names where feasible + $Data::Dumper::Indent = 0; # turn off all pretty print print Dumper($boo), "\n"; - $Data::Dumper::Indent = 1; # mild pretty print + $Data::Dumper::Indent = 1; # mild pretty print print Dumper($boo); - $Data::Dumper::Indent = 3; # pretty print with array indices + $Data::Dumper::Indent = 3; # pretty print with array indices print Dumper($boo); - $Data::Dumper::Useqq = 1; # print strings in double quotes + $Data::Dumper::Useqq = 1; # print strings in double quotes print Dumper($boo); - $Data::Dumper::Pair = " : "; # specify hash key/value separator + $Data::Dumper::Pair = " : "; # specify hash key/value separator print Dumper($boo); @@ -1297,7 +1297,7 @@ modify it under the same terms as Perl itself. =head1 VERSION -Version 2.131 (May 27 2011) +Version 2.132 (August 20 2011) =head1 SEE ALSO |