summaryrefslogtreecommitdiff
path: root/pod/perlretut.pod
diff options
context:
space:
mode:
authorRichard Soderberg <p5-authors@crystalflame.net>2004-11-12 16:14:49 +0000
committerH.Merijn Brand <h.m.brand@xs4all.nl>2004-11-12 20:47:19 +0000
commitfa11829f4b6d56533794dd127f3d1068d9593670 (patch)
tree7f368b0c4f3bed68b378d9fea31eee156223ea2c /pod/perlretut.pod
parentac7de224d1cdf1bc265fb1a3311a78c903d66ee7 (diff)
downloadperl-fa11829f4b6d56533794dd127f3d1068d9593670.tar.gz
[perl #32419] Spelling fixes for perl@23492
From: Richard Soderberg (via RT) <perlbug-followup@perl.org> Message-ID: <rt-3.0.11-32419-100173.13.0717895191322@perl.org> p4raw-id: //depot/perl@23496
Diffstat (limited to 'pod/perlretut.pod')
-rw-r--r--pod/perlretut.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlretut.pod b/pod/perlretut.pod
index b738c3b2cb..c0a78a43e4 100644
--- a/pod/perlretut.pod
+++ b/pod/perlretut.pod
@@ -1754,7 +1754,7 @@ letter, the braces can be dropped. For instance, C<\pM> is the
character class of Unicode 'marks', for example accent marks.
For the full list see L<perlunicode>.
-The Unicode has also been separated into various sets of charaters
+The Unicode has also been separated into various sets of characters
which you can test with C<\p{In...}> (in) and C<\P{In...}> (not in),
for example C<\p{Latin}>, C<\p{Greek}>, or C<\P{Katakana}>.
For the full list see L<perlunicode>.
@@ -2271,7 +2271,7 @@ may surprise you:
$pat = qr/(?{ $foo = 1 })/; # precompile code regexp
/foo${pat}bar/; # compiles ok
-If a regexp has (1) code expressions and interpolating variables,or
+If a regexp has (1) code expressions and interpolating variables, or
(2) a variable that interpolates a code expression, perl treats the
regexp as an error. If the code expression is precompiled into a
variable, however, interpolating is ok. The question is, why is this