Missed a chunk in previous commit
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>
Mon, 20 Jun 2005 09:20:40 +0000 (09:20 +0000)
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>
Mon, 20 Jun 2005 09:20:40 +0000 (09:20 +0000)
p4raw-id: //depot/perl@24903

pod/perlsyn.pod

index 7b2fc5f..5d25a77 100644 (file)
@@ -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>.