summaryrefslogtreecommitdiff
path: root/pod/perldiag.pod
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2011-12-17 12:50:14 -0800
committerFather Chrysostomos <sprout@cpan.org>2011-12-17 23:19:01 -0800
commit674f6ed9554b2bde85f24ebe6fae535e5b112419 (patch)
tree86eb95ca613eb2332d44684167c3107336cb271f /pod/perldiag.pod
parent56a20cc1a7036f2b16fa20ec767b07a8309c1cb6 (diff)
downloadperl-674f6ed9554b2bde85f24ebe6fae535e5b112419.tar.gz
Fix the one remaining long line in perldiag
Diffstat (limited to 'pod/perldiag.pod')
-rw-r--r--pod/perldiag.pod18
1 files changed, 9 insertions, 9 deletions
diff --git a/pod/perldiag.pod b/pod/perldiag.pod
index b2ea85322e..5f9b9718a6 100644
--- a/pod/perldiag.pod
+++ b/pod/perldiag.pod
@@ -4858,15 +4858,15 @@ subvert Perl's population of %ENV for nefarious purposes.
(F) The condition part of a (?(condition)if-clause|else-clause) construct
is not known. The condition must be one of the following:
- (1) (2) ... true if 1st, 2nd, etc., capture matched
- (<NAME>) ('NAME') true if named capture matched
- (?=...) (?<=...) true if subpattern matches
- (?!...) (?<!...) true if subpattern fails to match
- (?{ CODE }) true if code returns a true value
- (R) true if evaluating inside recursion
- (R1) (R2) ... true if directly inside capture group 1, 2, etc.
- (R&NAME) true if directly inside named capture
- (DEFINE) always false; for defining named subpatterns
+ (1) (2) ... true if 1st, 2nd, etc., capture matched
+ (<NAME>) ('NAME') true if named capture matched
+ (?=...) (?<=...) true if subpattern matches
+ (?!...) (?<!...) true if subpattern fails to match
+ (?{ CODE }) true if code returns a true value
+ (R) true if evaluating inside recursion
+ (R1) (R2) ... true if directly inside capture group 1, 2, etc.
+ (R&NAME) true if directly inside named capture
+ (DEFINE) always false; for defining named subpatterns
The <-- HERE shows in the regular expression about where the problem was
discovered. See L<perlre>.