This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Corrections to spelling and grammatical errors.
authorLajos Veres <vlajos@gmail.com>
Fri, 30 Jan 2015 00:32:16 +0000 (19:32 -0500)
committerJames E Keenan <jkeenan@cpan.org>
Fri, 30 Jan 2015 00:43:57 +0000 (19:43 -0500)
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

14 files changed:
dist/Data-Dumper/Changes
dist/Data-Dumper/Dumper.pm
dist/Data-Dumper/Dumper.xs
dist/ExtUtils-CBuilder/Changes
dist/IO/t/io_sock.t
dist/Math-BigInt/t/bigintpm.inc
dist/Math-BigInt/t/upgrade.inc
dist/Module-CoreList/Changes
dist/Safe/Changes
dist/Storable/ChangeLog
dist/Storable/Storable.pm
dist/Storable/Storable.xs
dist/Storable/t/attach_errors.t
dist/threads-shared/t/hv_refs.t

index 1f31922..eca3bb9 100644 (file)
@@ -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.
index f426f3f..5073be1 100644 (file)
@@ -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
 
index 70b0c92..98b013b 100644 (file)
@@ -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.  */
index fab9a9d..89301c6 100644 (file)
@@ -381,7 +381,7 @@ Revision history for Perl extension ExtUtils::CBuilder.
    somehow never got into this copy. [Steve Hay]
 
  - Added a new 'defines' parameter to compile(), which gives a
-   platform-independant way to specify various -Dfoo=bar (or the
+   platform-independent way to specify various -Dfoo=bar (or the
    equivalent) compiler defines. [Randy W. Sims]
 
 0.14  Mon Sep 19 13:40:37 CDT 2005
index 0202d70..c9c443b 100644 (file)
@@ -210,7 +210,7 @@ if ( $^O eq 'qnx' ) {
 }
 
 ### TEST 15
-### Set up some data to be transfered between the server and
+### Set up some data to be transferred between the server and
 ### the client. We'll use own source code ...
 #
 local @data;
index 0d47f6d..c3e815c 100644 (file)
@@ -1135,7 +1135,7 @@ abc:abc:NaN
 +1:+32:4294967296
 +1:+48:281474976710656
 +8:-2:NaN
-# excercise base 10
+# exercise base 10
 +12345:4:10:123450000
 -1234:0:10:-1234
 +1234:0:10:1234
@@ -1153,7 +1153,7 @@ abc:abc:NaN
 +4294967296:+32:1
 +281474976710656:+48:1
 +2:-2:NaN
-# excercise base 10
+# exercise base 10
 -1234:0:10:-1234
 +1234:0:10:1234
 +200:2:10:2
@@ -1585,7 +1585,7 @@ inf:0:inf,inf
 96969696969696969696969696969678787878626262626262626262626262:484848484848484848484848486666666666666689898989898989898989:199,484848484848484848484848123012121211954972727272727272727451
 # bug in v1.76
 1267650600228229401496703205375:1267650600228229401496703205376:0,1267650600228229401496703205375
-# excercise shortcut for numbers of the same length in div
+# exercise shortcut for numbers of the same length in div
 999999999999999999999999999999999:999999999999999999999999999999999:1,0
 999999999999999999999999999999999:888888888888888888888888888888888:1,111111111111111111111111111111111
 999999999999999999999999999999999:777777777777777777777777777777777:1,222222222222222222222222222222222
index 5516fa7..ef0a6ea 100644 (file)
@@ -567,7 +567,7 @@ abc:abc:NaN
 +1:+32:4294967296
 +1:+48:281474976710656
 +8:-2:NaN
-# excercise base 10
+# exercise base 10
 +12345:4:10:123450000
 -1234:0:10:-1234
 +1234:0:10:1234
index 3082f05..12fe65e 100644 (file)
@@ -52,7 +52,7 @@
 3.06 Thu Feb 20 2014
  - updated for 5.19.9
  - fix Module::CoreList::is_core default perl version
- - fix Module::CoreList::is_core version comparision
+ - fix Module::CoreList::is_core version comparison
 
 3.05
   - Prepared for v5.19.9
index a707195..8c90395 100644 (file)
 
 2.09 Sun Oct  6 14:12:40 CEST 2002
        - Upgraded the Makefile.PL to install Safe.pm to the correct place.
-       - Made it work on 5.6 atleast, maybe even on 5.005?
+       - Made it work on 5.6 at least, maybe even on 5.005?
 
 2.08 Sat Oct  5 18:05:32 CEST 2002
        - First CPAN release, prompted by bug number 17744 on rt.perl.org.
index 4df921e..cbfdbab 100644 (file)
@@ -209,7 +209,7 @@ Fri Jun  7 23:55:41 BST 2002   Nicholas Clark
        The bug was introduced as development perl change 16442 (on
        2002/05/07), so has been present since 2.00.
        Patches to introduce more regression tests to reduce the chance of
-       a reoccurence of this sort of goof are always welcome.
+       a reoccurrence of this sort of goof are always welcome.
        
 Thu May 30 20:31:08 BST 2002   Nicholas Clark <nick@ccl4.org>
 
index f5afada..9d8b621 100644 (file)
@@ -22,7 +22,7 @@ package Storable; @ISA = qw(Exporter);
 
 use vars qw($canonical $forgive_me $VERSION);
 
-$VERSION = '2.52';
+$VERSION = '2.53';
 
 BEGIN {
     if (eval { local $SIG{__DIE__}; require Log::Agent; 1 }) {
index 7d27275..39f3565 100644 (file)
@@ -3720,7 +3720,7 @@ undef_special_case:
  * Write magic number and system information into the file.
  * Layout is <magic> <network> [<len> <byteorder> <sizeof int> <sizeof long>
  * <sizeof ptr>] where <len> is the length of the byteorder hexa string.
- * All size and lenghts are written as single characters here.
+ * All size and lengths are written as single characters here.
  *
  * Note that no byte ordering info is emitted when <network> is true, since
  * integers will be emitted in network order in that case.
index c163ca0..6cebd97 100644 (file)
@@ -234,7 +234,7 @@ use Storable ();
        isa_ok( $thawed->[1], 'My::GoodAttach::MultipleReferences' );
 
        is($thawed->[0], $thawed->[1], 'References to the same object are attached properly');
-       is($thawed->[1]{id}, $obj->{id}, 'Object with multiple references attchached properly');
+       is($thawed->[1]{id}, $obj->{id}, 'Object with multiple references attached properly');
 
     package My::GoodAttach::MultipleReferences;
 
index ecefdc6..a2d2206 100644 (file)
@@ -63,7 +63,7 @@ ok(8, threads::shared::_id($$gg) == threads::shared::_id($$gg2),
        sprintf("Check we get the same thing (%x vs %x)",
        threads::shared::_id($$gg),threads::shared::_id($$gg2)));
 ok(9, $$gg eq $$gg2, "And check the values are the same");
-ok(10, keys %foo == 0, "And make sure we realy have deleted the values");
+ok(10, keys %foo == 0, "And make sure we really have deleted the values");
 {
     my (%hash1, %hash2);
     share(%hash1);