This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perlre, perlrecharclass, Fix overlooked typos
authorKarl Williamson <khw@cpan.org>
Sat, 18 Feb 2017 20:00:49 +0000 (13:00 -0700)
committerKarl Williamson <khw@cpan.org>
Mon, 20 Feb 2017 16:18:16 +0000 (09:18 -0700)
I thought I had committed these nits, pointed out to me by reviewers,
but I hadn't done so properly.

pod/perlre.pod
pod/perlrecharclass.pod

index 3c90252..7b48355 100644 (file)
@@ -69,7 +69,7 @@ meaning described in this document.  A sequence of non-metacharacters
 matches the same sequence in the target string, as we saw above with
 C<m/abc/>.
 
-Only a few characters (all or them being ASCII punctuation characters)
+Only a few characters (all of them being ASCII punctuation characters)
 are metacharacters.  The most commonly used one is a dot C<".">, which
 normally matches almost any character (including a dot itself).
 
index ab01142..79480e4 100644 (file)
@@ -178,7 +178,7 @@ are generally used to add auxiliary markings to letters.
 C<\w> matches the platform's native underscore character plus whatever
 the locale considers to be alphanumeric.
 
-=item if instead, Unicode rules are in effect ...
+=item if, instead, Unicode rules are in effect ...
 
 C<\w> matches exactly what C<\p{Word}> matches.
 
@@ -236,7 +236,7 @@ in the table below.
 
 C<\s> matches whatever the locale considers to be whitespace.
 
-=item if instead, Unicode rules are in effect ...
+=item if, instead, Unicode rules are in effect ...
 
 C<\s> matches exactly the characters shown with an "s" column in the
 table below.
@@ -949,7 +949,7 @@ just the platform's native tab and space characters.
 
 =back
 
-=item if instead, Unicode rules are in effect ...
+=item if, instead, Unicode rules are in effect ...
 
 The POSIX class matches the same as the Full-range counterpart.