From: Sébastien Aperghis-Tramoni Date: Mon, 31 Dec 2007 21:05:47 +0000 (+0100) Subject: Small documentation nits X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=d991eed6a698716065b2039839dd7d319bc188db;p=p5sagit%2Fp5-mst-13.2.git Small documentation nits Message-Id: <2AF110D6-9183-47C5-BBBA-26C3FB97C3D3@free.fr> p4raw-id: //depot/perl@32805 --- diff --git a/pod/perl5100delta.pod b/pod/perl5100delta.pod index 7f6032f..d47df84 100644 --- a/pod/perl5100delta.pod +++ b/pod/perl5100delta.pod @@ -103,7 +103,7 @@ nested balanced angle brackets: < # match an opening angle bracket (?: # match one of: (?> # don't backtrack over the inside of this group - [^<>]+ # one or more non angle brackets + [^<>]+ # one or more non angle brackets ) # end non backtracking group | # ... or ... (?1) # recurse to bracket 1 and try it again @@ -313,7 +313,7 @@ To use state variables, one needs to enable them by using use feature 'state'; or by using the C<-E> command-line switch in one-liners. -See L. +See L. =head2 Stacked filetest operators diff --git a/pod/perlsyn.pod b/pod/perlsyn.pod index eb9fc4a..e1d6464 100644 --- a/pod/perlsyn.pod +++ b/pod/perlsyn.pod @@ -560,25 +560,25 @@ time. The exceptions are that when EXPR is: =over 4 -=item o +=item * a subroutine or method call -=item o +=item * a regular expression match, i.e. C or C<$foo =~ /REGEX/>, or a negated regular expression match C<$foo !~ /REGEX/>. -=item o +=item * a comparison such as C<$_ E 10> or C<$x eq "abc"> (or of course C<$_ ~~ $c>) -=item o +=item * C, C, or C -=item o +=item * A negated expression C or C, or a logical exclusive-or C<(...) xor (...)>.