diff options
author | Steffen Müller <0mgwtfbbq@sneakemail.com> | 2002-07-09 04:23:33 +0200 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-07-09 11:50:41 +0000 |
commit | 8b19b778095c65c753c5e9d223cac7401a43bd7f (patch) | |
tree | 7718f9e3bb83eee32f9cb6e506bdebfdb367fa5f /pod | |
parent | b13872386a1592fb39e4c9e14ec614f70a5c8533 (diff) | |
download | perl-8b19b778095c65c753c5e9d223cac7401a43bd7f.tar.gz |
[DOC PATCH] perlre, minor error
From: "Steffen Mueller" <xyey9001@sneakemail.com>
Message-ID: <20020709002024.28399.qmail@onion.perl.org>
p4raw-id: //depot/perl@17434
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perlre.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlre.pod b/pod/perlre.pod index 0256f225f3..bb521139ca 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"; |