diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-06-20 09:20:40 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-06-20 09:20:40 +0000 |
commit | 1d5653ddbca059269584f6915dceeb0bf7d5d177 (patch) | |
tree | 32d423a139fb50e87584f92604711be3dd5a9d37 /pod/perlsyn.pod | |
parent | 5ec6d87f97023d8f5abd4f645f0f43d4242525f6 (diff) | |
download | perl-1d5653ddbca059269584f6915dceeb0bf7d5d177.tar.gz |
Missed a chunk in previous commit
p4raw-id: //depot/perl@24903
Diffstat (limited to 'pod/perlsyn.pod')
-rw-r--r-- | pod/perlsyn.pod | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pod/perlsyn.pod b/pod/perlsyn.pod index 7b2fc5fa9e..5d25a77f5c 100644 --- a/pod/perlsyn.pod +++ b/pod/perlsyn.pod @@ -225,6 +225,8 @@ the sense of the test is reversed. The C<while> statement executes the block as long as the expression is true (does not evaluate to the null string C<""> or C<0> or C<"0">). +The C<until> statement executes the block as long as the expression is +false. The LABEL is optional, and if present, consists of an identifier followed by a colon. The LABEL identifies the loop for the loop control statements C<next>, C<last>, and C<redo>. |