This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Integrate:
authorOffer Kaye <offer.kaye@gmail.com>
Mon, 30 May 2005 11:27:38 +0000 (14:27 +0300)
committerNicholas Clark <nick@ccl4.org>
Mon, 30 May 2005 15:57:32 +0000 (15:57 +0000)
[ 24623]
Subject: [PATCH] perlrun.pod -w description typo
Message-ID: <569425050530012768a9baca@mail.gmail.com>

[ 24624]
Minor grammar fix by Uri Guttman
p4raw-link: @24624 on //depot/perl: 5146ce245446226ed02775f664797aac87dacb4d
p4raw-link: @24623 on //depot/perl: a4d9c8a6ca8341547c15d831d9aa888263f7fce2

p4raw-id: //depot/maint-5.8/perl@24636
p4raw-integrated: from //depot/perl@24635 'merge in' pod/perlre.pod
(@24090..) pod/perlrun.pod (@24382..)

pod/perlre.pod
pod/perlrun.pod

index 1e8147f..80af91e 100644 (file)
@@ -406,7 +406,7 @@ until the end of the enclosing block or until the next successful
 match, whichever comes first.  (See L<perlsyn/"Compound Statements">.)
 
 B<NOTE>: failed matches in Perl do not reset the match variables,
-which makes easier to write code that tests for a series of more
+which makes it easier to write code that tests for a series of more
 specific cases and remembers the best match.
 
 B<WARNING>: Once Perl sees that you need one of C<$&>, C<$`>, or
index 43d523e..1ad1c74 100644 (file)
@@ -891,7 +891,7 @@ prints warnings about dubious constructs, such as variable names
 that are mentioned only once and scalar variables that are used
 before being set, redefined subroutines, references to undefined
 filehandles or filehandles opened read-only that you are attempting
-to write on, values used as a number that doesn't look like numbers,
+to write on, values used as a number that don't look like numbers,
 using an array as though it were a scalar, if your subroutines
 recurse more than 100 deep, and innumerable other things.