summaryrefslogtreecommitdiff
path: root/pod/perlre.pod
diff options
context:
space:
mode:
authorDavid Landgren <david@landgren.net>2007-09-28 22:42:56 +0200
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2007-10-04 14:28:34 +0000
commit353c650532037e4006fbdb2176350717f320f7c3 (patch)
treed168025606b4a4daf862755b087c4ba3b29e97b5 /pod/perlre.pod
parent94fcd414575e04d8b809003ba7bca1216090abff (diff)
downloadperl-353c650532037e4006fbdb2176350717f320f7c3.tar.gz
POD cleanups
Message-ID: <46FD4B30.9070802@landgren.net> p4raw-id: //depot/perl@32026
Diffstat (limited to 'pod/perlre.pod')
-rw-r--r--pod/perlre.pod6
1 files changed, 3 insertions, 3 deletions
diff --git a/pod/perlre.pod b/pod/perlre.pod
index 96ed872997..8bd517e2e4 100644
--- a/pod/perlre.pod
+++ b/pod/perlre.pod
@@ -389,7 +389,7 @@ If the C<utf8> pragma is not used but the C<locale> pragma is, the
classes correlate with the usual isalpha(3) interface (except for
"word" and "blank").
-The assumedly non-obviously named classes are:
+The other named classes are:
=over 4
@@ -1386,7 +1386,7 @@ If we add a C<(*PRUNE)> before the count like the following
print "Count=$count\n";
we prevent backtracking and find the count of the longest matching
-at each matching startpoint like so:
+at each matching starting point like so:
aaab
aab
@@ -1432,7 +1432,7 @@ outputs
Count=2
Once the 'aaab' at the start of the string has matched, and the C<(*SKIP)>
-executed, the next startpoint will be where the cursor was when the
+executed, the next starting point will be where the cursor was when the
C<(*SKIP)> was executed.
=item C<(*MARK:NAME)> C<(*:NAME)>