From 59d27e72d5458d7626c19c0a4d42b03180b0a1b8 Mon Sep 17 00:00:00 2001 From: Dave Barr <dave@php.net> Date: Fri, 9 Jul 2004 16:02:28 +0000 Subject: [PATCH] - Fix #29077. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@162920 c90b9560-bf6c-de11-be94-00142212c4b1 --- language/control-structures.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/language/control-structures.xml b/language/control-structures.xml index e29928dc84..bf5936c1b2 100644 --- a/language/control-structures.xml +++ b/language/control-structures.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="iso-8859-1"?> -<!-- $Revision: 1.92 $ --> +<!-- $Revision: 1.93 $ --> <chapter id="language.control-structures"> <title>Control Structures</title> @@ -344,7 +344,7 @@ do { Advanced C users may be familiar with a different usage of the <literal>do..while</literal> loop, to allow stopping execution in the middle of code blocks, by encapsulating them with - <literal>do..while</literal> (0), and using the <link + <literal>do..while</literal> (1), and using the <link linkend="control-structures.break"><literal>break</literal></link> statement. The following code fragment demonstrates this: <informalexample> @@ -364,7 +364,7 @@ do { /* process i */ -} while (0); +} while (1); ?> ]]> </programlisting>