diff options
author | Sébastien Aperghis-Tramoni <sebastien@aperghis.net> | 2007-12-31 22:05:47 +0100 |
---|---|---|
committer | Steve Peters <steve@fisharerojo.org> | 2008-01-02 18:29:14 +0000 |
commit | d991eed6a698716065b2039839dd7d319bc188db (patch) | |
tree | 7b262bef3095ea4e71686cb13e382a1153b2a470 | |
parent | 288b8c02c5ee89a2978a1b9e56ed255c53beb793 (diff) | |
download | perl-d991eed6a698716065b2039839dd7d319bc188db.tar.gz |
Small documentation nits
Message-Id: <2AF110D6-9183-47C5-BBBA-26C3FB97C3D3@free.fr>
p4raw-id: //depot/perl@32805
-rw-r--r-- | pod/perl5100delta.pod | 4 | ||||
-rw-r--r-- | pod/perlsyn.pod | 10 |
2 files changed, 7 insertions, 7 deletions
diff --git a/pod/perl5100delta.pod b/pod/perl5100delta.pod index 7f6032f7e3..d47df845d2 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<perlsub/"Persistent variables via state()">. +See L<perlsub/"Persistent Private Variables">. =head2 Stacked filetest operators diff --git a/pod/perlsyn.pod b/pod/perlsyn.pod index eb9fc4a631..e1d6464416 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</REGEX/> or C<$foo =~ /REGEX/>, or a negated regular expression match C<$foo !~ /REGEX/>. -=item o +=item * a comparison such as C<$_ E<lt> 10> or C<$x eq "abc"> (or of course C<$_ ~~ $c>) -=item o +=item * C<defined(...)>, C<exists(...)>, or C<eof(...)> -=item o +=item * A negated expression C<!(...)> or C<not (...)>, or a logical exclusive-or C<(...) xor (...)>. |