From: Steffen Müller <0mgwtfbbq@sneakemail.com> Date: Tue, 9 Jul 2002 02:23:33 +0000 (+0200) Subject: [DOC PATCH] perlre, minor error X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=8b19b778095c65c753c5e9d223cac7401a43bd7f;p=p5sagit%2Fp5-mst-13.2.git [DOC PATCH] perlre, minor error From: "Steffen Mueller" Message-ID: <20020709002024.28399.qmail@onion.perl.org> p4raw-id: //depot/perl@17434 --- diff --git a/pod/perlre.pod b/pod/perlre.pod index 0256f22..bb52113 100644 --- a/pod/perlre.pod +++ b/pod/perlre.pod @@ -884,7 +884,7 @@ multiple ways it might succeed, you need to understand backtracking to know which variety of success you will achieve. When using look-ahead assertions and negations, this can all get even -tricker. Imagine you'd like to find a sequence of non-digits not +trickier. Imagine you'd like to find a sequence of non-digits not followed by "123". You might try to write that as $_ = "ABC123";