Skip to content

Commit

Permalink
Correct one spelling error; increment $Storable::VERSION.
Browse files Browse the repository at this point in the history
  • Loading branch information
jkeenan committed Jan 25, 2017
1 parent 184f06c commit 706cfb1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/Storable/Storable.pm
Expand Up @@ -22,7 +22,7 @@ package Storable; @ISA = qw(Exporter);

use vars qw($canonical $forgive_me $VERSION);

$VERSION = '2.61';
$VERSION = '2.62';

BEGIN {
if (eval {
Expand Down
2 changes: 1 addition & 1 deletion dist/Storable/t/store.t
Expand Up @@ -106,7 +106,7 @@ isnt($@, '');
my $pid = fork();
if ($pid) {
waitpid( $pid, 0 );
ok( $? == 0 || $? == 256, 'No stack smashing error when retieving hook' );
ok( $? == 0 || $? == 256, 'No stack smashing error when retrieving hook' );
}
elsif ( defined $pid ) {
close STDOUT;
Expand Down

0 comments on commit 706cfb1

Please sign in to comment.