From: Rafael Garcia-Suarez <rgarciasuarez@gmail.com>
Date: Mon, 20 Jun 2005 09:20:40 +0000 (+0000)
Subject: Missed a chunk in previous commit
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=1d5653ddbca059269584f6915dceeb0bf7d5d177;p=p5sagit%2Fp5-mst-13.2.git

Missed a chunk in previous commit

p4raw-id: //depot/perl@24903
---

diff --git a/pod/perlsyn.pod b/pod/perlsyn.pod
index 7b2fc5f..5d25a77 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>.