From: Rafael Garcia-Suarez Date: Fri, 28 Apr 2006 08:41:25 +0000 (+0000) Subject: Typo fix in perlretut by Simon Taylor X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=3c12f9b9b81869dda969f4eaab50a183e5bd8779;p=p5sagit%2Fp5-mst-13.2.git Typo fix in perlretut by Simon Taylor p4raw-id: //depot/perl@27989 --- diff --git a/pod/perlretut.pod b/pod/perlretut.pod index c0a78a4..6afae21 100644 --- a/pod/perlretut.pod +++ b/pod/perlretut.pod @@ -500,7 +500,7 @@ Here are examples of C and C 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 and +Most of the time, the default behavior is what is wanted, but C and C are occasionally very useful. If C 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