summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Crane <arc@cpan.org>2014-03-20 17:12:57 +0000
committerAaron Crane <arc@cpan.org>2014-03-20 17:12:57 +0000
commit29900347a7633145c3b5b33b6635d3e72f1afe87 (patch)
tree689545d7369fe3f6b5e77c13e3c880165e572554
parent8e5dcc37de4ab79d8ec6f30798947ae97355ff2a (diff)
downloadperl-29900347a7633145c3b5b33b6635d3e72f1afe87.tar.gz
Porting/corelist-perldelta.pl: fix typo in error message
-rwxr-xr-xPorting/corelist-perldelta.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/Porting/corelist-perldelta.pl b/Porting/corelist-perldelta.pl
index fd0b2e285c..afda394738 100755
--- a/Porting/corelist-perldelta.pl
+++ b/Porting/corelist-perldelta.pl
@@ -68,7 +68,7 @@ sub run {
($old, $new) = (shift @ARGV, shift @ARGV);
die "$old is an invalid version\n" if not exists
$Module::CoreList::version{$old};
- die "$new is an invalid verison\n" if not exists
+ die "$new is an invalid version\n" if not exists
$Module::CoreList::version{$new};
}