summaryrefslogtreecommitdiff
path: root/pod/perlre.pod
diff options
context:
space:
mode:
authorbart@cg681574-a.adubn1.nj.home.com <bart@cg681574-a.adubn1.nj.home.com>2001-05-29 08:58:59 -0500
committerJarkko Hietaniemi <jhi@iki.fi>2001-05-30 12:37:43 +0000
commit9b9391b2137d0d888bfc6470939bf27aafb72518 (patch)
treea93b0af5a0f916abb92190cd322a9fc3fa0a6f54 /pod/perlre.pod
parent2487403058374808c346479712397733bb789089 (diff)
downloadperl-9b9391b2137d0d888bfc6470939bf27aafb72518.tar.gz
[ID 20010529.002] typos in man page perlre
Message-Id: <E154ohn-00053j-00@debian.adubn1.nj.home.com> p4raw-id: //depot/perl@10315
Diffstat (limited to 'pod/perlre.pod')
-rw-r--r--pod/perlre.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlre.pod b/pod/perlre.pod
index ce2b9bd952..5fd545f605 100644
--- a/pod/perlre.pod
+++ b/pod/perlre.pod
@@ -784,7 +784,7 @@ and the first "bar" thereafter.
got <d is under the >
Here's another example: let's say you'd like to match a number at the end
-of a string, and you also want to keep the preceding part the match.
+of a string, and you also want to keep the preceding of part the match.
So you write this:
$_ = "I have 2 numbers: 53147";
@@ -850,7 +850,7 @@ followed by "123". You might try to write that as
But that isn't going to match; at least, not the way you're hoping. It
claims that there is no 123 in the string. Here's a clearer picture of
-why it that pattern matches, contrary to popular expectations:
+why that pattern matches, contrary to popular expectations:
$x = 'ABC123' ;
$y = 'ABC445' ;