diff options
author | Alexandr Ciornii <alexchorny@gmail.com> | 2007-04-24 03:45:05 +0300 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2007-04-25 08:42:27 +0000 |
commit | c62285acd36452251fb244aaa1ae7cfe0821c1b7 (patch) | |
tree | d3a32cddcc89db25cbf524bacdd40558023a8cdd /pod | |
parent | 93451a0d701a99f9e22fae7cbb890392787a99bd (diff) | |
download | perl-c62285acd36452251fb244aaa1ae7cfe0821c1b7.tar.gz |
perlre.pod spellcheck
From: "Alexandr Ciornii" <alexchorny@gmail.com>
Message-ID: <2f1541220704231445w6fa7bfcbl41c9b6f56fb70feb@mail.gmail.com>
p4raw-id: //depot/perl@31067
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perlre.pod | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pod/perlre.pod b/pod/perlre.pod index 18652321e1..bd7a1aa1e6 100644 --- a/pod/perlre.pod +++ b/pod/perlre.pod @@ -280,7 +280,7 @@ locale. See L<perllocale>. You may use C<\w>, C<\W>, C<\s>, C<\S>, C<\d>, and C<\D> within character classes, but they aren't usable as either end of a range. If any of them precedes or follows a "-", the "-" is understood literally. If Unicode is in effect, C<\s> matches -also "\x{85}", "\x{2028}, and "\x{2029}". See L<perlunicode> for more +also "\x{85}", "\x{2028}", and "\x{2029}". See L<perlunicode> for more details about C<\pP>, C<\PP>, C<\X> and the possibility of defining your own C<\p> and C<\P> properties, and L<perluniintro> about Unicode in general. @@ -805,7 +805,7 @@ not include it in C<$&>. This effectively provides variable length look-behind. The use of C<\K> inside of another look-around assertion is allowed, but the behaviour is currently not well defined. -For various reasons C<\K> may be signifigantly more efficient than the +For various reasons C<\K> may be significantly more efficient than the equivalent C<< (?<=...) >> construct, and it is especially useful in situations where you want to efficiently remove something following something else in a string. For instance @@ -832,7 +832,7 @@ X<< (?<NAME>) >> X<(?'NAME')> X<named capture> X<capture> A named capture buffer. Identical in every respect to normal capturing parentheses C<()> but for the additional fact that C<%+> may be used after -a succesful match to refer to a named buffer. See C<perlvar> for more +a successful match to refer to a named buffer. See C<perlvar> for more details on the C<%+> hash. If multiple distinct capture buffers have the same name then the @@ -1454,7 +1454,7 @@ name of the most recently executed C<(*MARK:NAME)> that was involved in the match. This can be used to determine which branch of a pattern was matched -without using a seperate capture buffer for each branch, which in turn +without using a separate capture buffer for each branch, which in turn can result in a performance improvement, as perl cannot optimize C</(?:(x)|(y)|(z))/> as efficiently as something like C</(?:x(*MARK:x)|y(*MARK:y)|z(*MARK:z))/>. |