summaryrefslogtreecommitdiff
path: root/Porting/corelist-perldelta.pl
diff options
context:
space:
mode:
authorLajos Veres <vlajos@gmail.com>2015-01-28 20:24:01 -0500
committerJames E Keenan <jkeenan@cpan.org>2015-01-28 20:24:01 -0500
commit8b5913570f597d942779f232ba750d5f92c055bd (patch)
tree9968c74514ed90681e1ab5108e81c8c4b58eaa2f /Porting/corelist-perldelta.pl
parentdf99f62f8260e7dbf4d2b00921876ae4cd282136 (diff)
downloadperl-8b5913570f597d942779f232ba750d5f92c055bd.tar.gz
Corrections to spelling and grammatical errors.
Extracted from patch submitted by Lajos Veres in RT #123693.
Diffstat (limited to 'Porting/corelist-perldelta.pl')
-rwxr-xr-xPorting/corelist-perldelta.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/Porting/corelist-perldelta.pl b/Porting/corelist-perldelta.pl
index 43010886cd..048d571b2a 100755
--- a/Porting/corelist-perldelta.pl
+++ b/Porting/corelist-perldelta.pl
@@ -446,7 +446,7 @@ sub do_check {
sub add_to_section {
my ( $section, $data, $title ) = @_;
- #undef is a valid version name in Module::CoreList so supress warnings about concatenating undef values
+ #undef is a valid version name in Module::CoreList so suppress warnings about concatenating undef values
no warnings 'uninitialized';
for ( values %{ $data->{$title} } ) {
my ( $mod, $old_v, $new_v ) = @{$_};
@@ -479,7 +479,7 @@ sub do_check {
# if we could not parse the module name, it will be uninitalized
# in sort. This is not a problem as it will just result in these
- # sections being placed near the begining of the section
+ # sections being placed near the beginning of the section
no warnings 'uninitialized';
$section->{items} =
[ sort { lc $a->{name} cmp lc $b->{name} } @{ $section->{items} } ];