[ID 20010128.003] [PATCH] perlre.pod \b buglet
root@ak-75.mind.de [Sun, 28 Jan 2001 20:32:29 +0000 (21:32 +0100)]
Message-Id: <200101281932.UAA15768@ak-75.mind.de>

p4raw-id: //depot/perl@8587

pod/perlre.pod

index 0c38ac7..2e2f59c 100644 (file)
@@ -1096,7 +1096,7 @@ For example:
     $_ = 'bar';
     s/\w??/<$&>/g;
 
-results in C<"<><b><><a><><r><>">.  At each position of the string the best
+results in C<< <><b><><a><><r><> >>.  At each position of the string the best
 match given by non-greedy C<??> is the zero-length match, and the I<second 
 best> match is what is matched by C<\w>.  Thus zero-length matches
 alternate with one-character-long matches.