summaryrefslogtreecommitdiff
path: root/pod/perlretut.pod
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2006-04-28 08:41:25 +0000
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2006-04-28 08:41:25 +0000
commit3c12f9b9b81869dda969f4eaab50a183e5bd8779 (patch)
treec320d19f169125e97deaf5dd58a3b495b423f55e /pod/perlretut.pod
parentba1fe781b25ca91156a66df5a1cba2c16580a339 (diff)
downloadperl-3c12f9b9b81869dda969f4eaab50a183e5bd8779.tar.gz
Typo fix in perlretut by Simon Taylor
p4raw-id: //depot/perl@27989
Diffstat (limited to 'pod/perlretut.pod')
-rw-r--r--pod/perlretut.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlretut.pod b/pod/perlretut.pod
index c0a78a43e4..6afae2187b 100644
--- a/pod/perlretut.pod
+++ b/pod/perlretut.pod
@@ -500,7 +500,7 @@ Here are examples of C<//s> and C<//m> in action:
$x =~ /girl.Who/m; # doesn't match, "." doesn't match "\n"
$x =~ /girl.Who/sm; # matches, "." matches "\n"
-Most of the time, the default behavior is what is want, but C<//s> and
+Most of the time, the default behavior is what is wanted, but C<//s> and
C<//m> are occasionally very useful. If C<//m> is being used, the start
of the string can still be matched with C<\A> and the end of string
can still be matched with the anchors C<\Z> (matches both the end and