summaryrefslogtreecommitdiff
path: root/dist/Data-Dumper
diff options
context:
space:
mode:
authorLajos Veres <vlajos@gmail.com>2015-01-28 20:35:53 -0500
committerJames E Keenan <jkeenan@cpan.org>2015-01-28 20:35:53 -0500
commit5bf4b3bf13bc4055684a48448b05920845ef7764 (patch)
treedf5552ccbd15a100e7ee864f6b06d1944285b3e4 /dist/Data-Dumper
parent1a43aa034207579c7b9e27eceda85687707c5c86 (diff)
downloadperl-5bf4b3bf13bc4055684a48448b05920845ef7764.tar.gz
Corrections to spelling and grammatical errors.
Extracted from patch submitted by Lajos Veres in RT #123693.
Diffstat (limited to 'dist/Data-Dumper')
-rw-r--r--dist/Data-Dumper/Changes2
-rw-r--r--dist/Data-Dumper/Dumper.pm4
-rw-r--r--dist/Data-Dumper/Dumper.xs2
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..f9e6a1e5f9 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 28 2015)
=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. */