diff options
author | Lajos Veres <vlajos@gmail.com> | 2015-01-29 19:32:16 -0500 |
---|---|---|
committer | James E Keenan <jkeenan@cpan.org> | 2015-01-29 19:43:57 -0500 |
commit | a9ccbcd7e3e4416b46c5c8cd5e61e7930776a83e (patch) | |
tree | f2d6dc486558eed76b2c1247cfa410c9fd60ec93 /dist/Data-Dumper | |
parent | f4fb63c7b74ff0e28cab75889fd6b0947f57d662 (diff) | |
download | perl-a9ccbcd7e3e4416b46c5c8cd5e61e7930776a83e.tar.gz |
Corrections to spelling and grammatical errors.
Extracted from patch submitted by Lajos Veres in RT #123693.
This commit applies those patches to files under dist/ *other than* those
pertaining to Tie-File.
Update $VERSION in Dumper.pm and Storable.pm after re-applying patches from RT
Diffstat (limited to 'dist/Data-Dumper')
-rw-r--r-- | dist/Data-Dumper/Changes | 2 | ||||
-rw-r--r-- | dist/Data-Dumper/Dumper.pm | 4 | ||||
-rw-r--r-- | dist/Data-Dumper/Dumper.xs | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/dist/Data-Dumper/Changes b/dist/Data-Dumper/Changes index 1f319227a1..eca3bb9995 100644 --- a/dist/Data-Dumper/Changes +++ b/dist/Data-Dumper/Changes @@ -328,7 +328,7 @@ C<require 5.002>. MLDBM example removed (as its own module, it has a separate CPAN reality now). -Fixed bugs in handling keys with wierd characters. Perl can be +Fixed bugs in handling keys with weird characters. Perl can be tripped up in its implicit quoting of the word before '=>'. The fix: C<Data::Dumper::Purity>, when set, always triggers quotes around hash keys. diff --git a/dist/Data-Dumper/Dumper.pm b/dist/Data-Dumper/Dumper.pm index f426f3fb5f..5073be17c2 100644 --- a/dist/Data-Dumper/Dumper.pm +++ b/dist/Data-Dumper/Dumper.pm @@ -10,7 +10,7 @@ package Data::Dumper; BEGIN { - $VERSION = '2.156'; # Don't forget to set version and release + $VERSION = '2.157'; # Don't forget to set version and release } # date in POD below! #$| = 1; @@ -1419,7 +1419,7 @@ modify it under the same terms as Perl itself. =head1 VERSION -Version 2.156 (January 20 2014) +Version 2.157 (January 29 2014) =head1 SEE ALSO diff --git a/dist/Data-Dumper/Dumper.xs b/dist/Data-Dumper/Dumper.xs index 70b0c9281e..98b013baff 100644 --- a/dist/Data-Dumper/Dumper.xs +++ b/dist/Data-Dumper/Dumper.xs @@ -440,7 +440,7 @@ DD_dump(pTHX_ SV *val, const char *name, STRLEN namelen, SV *retval, HV *seenhv, if (!val) return 0; - /* If the ouput buffer has less than some arbitrary amount of space + /* If the output buffer has less than some arbitrary amount of space remaining, then enlarge it. For the test case (25M of output), *1.1 was slower, *2.0 was the same, so the first guess of 1.5 is deemed to be good enough. */ |