summaryrefslogtreecommitdiff
path: root/dist/Storable
diff options
context:
space:
mode:
authorJames E Keenan <jkeenan@cpan.org>2015-01-29 19:21:52 -0500
committerJames E Keenan <jkeenan@cpan.org>2015-01-29 19:21:52 -0500
commitf4fb63c7b74ff0e28cab75889fd6b0947f57d662 (patch)
tree5cdb3b6c63bdc1dd78c2ba237135077656b15892 /dist/Storable
parenta8ec9917c1913282d626f8c7467e40e55b7f5c97 (diff)
downloadperl-f4fb63c7b74ff0e28cab75889fd6b0947f57d662.tar.gz
Revert "Corrections to spelling and grammatical errors."
This reverts commit 5bf4b3bf13bc4055684a48448b05920845ef7764. On p5p-list, Steve Hay wrote on 2015-01-29: "... these and other changes to Tie-File could break backwards compatibility. The keys of %opt are passed in from user code, so we can't change the expected key from "autodefer_threshhold" to "autodefer_threshold" without also asking users to change their code, which is probably more hassle than it's worth." Parts of the reverted commit will be re-committed from a new patch.
Diffstat (limited to 'dist/Storable')
-rw-r--r--dist/Storable/ChangeLog2
-rw-r--r--dist/Storable/Storable.pm2
-rw-r--r--dist/Storable/Storable.xs2
-rw-r--r--dist/Storable/t/attach_errors.t2
4 files changed, 4 insertions, 4 deletions
diff --git a/dist/Storable/ChangeLog b/dist/Storable/ChangeLog
index cbfdbabb83..4df921efd9 100644
--- a/dist/Storable/ChangeLog
+++ b/dist/Storable/ChangeLog
@@ -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 reoccurrence of this sort of goof are always welcome.
+ a reoccurence of this sort of goof are always welcome.
Thu May 30 20:31:08 BST 2002 Nicholas Clark <nick@ccl4.org>
diff --git a/dist/Storable/Storable.pm b/dist/Storable/Storable.pm
index 9d8b621c9c..f5afadaab9 100644
--- a/dist/Storable/Storable.pm
+++ b/dist/Storable/Storable.pm
@@ -22,7 +22,7 @@ package Storable; @ISA = qw(Exporter);
use vars qw($canonical $forgive_me $VERSION);
-$VERSION = '2.53';
+$VERSION = '2.52';
BEGIN {
if (eval { local $SIG{__DIE__}; require Log::Agent; 1 }) {
diff --git a/dist/Storable/Storable.xs b/dist/Storable/Storable.xs
index 39f35653a0..7d27275f41 100644
--- a/dist/Storable/Storable.xs
+++ b/dist/Storable/Storable.xs
@@ -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 lengths are written as single characters here.
+ * All size and lenghts 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.
diff --git a/dist/Storable/t/attach_errors.t b/dist/Storable/t/attach_errors.t
index 6cebd9735d..c163ca04fa 100644
--- a/dist/Storable/t/attach_errors.t
+++ b/dist/Storable/t/attach_errors.t
@@ -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 attached properly');
+ is($thawed->[1]{id}, $obj->{id}, 'Object with multiple references attchached properly');
package My::GoodAttach::MultipleReferences;