From 31a32222bc984f646fddb1e6f5a1c0890b5de7a9 Mon Sep 17 00:00:00 2001 From: Dave Barr Date: Fri, 9 Jul 2004 16:06:48 +0000 Subject: [PATCH] - Revert #29077. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@162921 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 bf5936c1b2..099ed99485 100644 --- a/language/control-structures.xml +++ b/language/control-structures.xml @@ -1,5 +1,5 @@ - + Control Structures @@ -344,7 +344,7 @@ do { Advanced C users may be familiar with a different usage of the do..while loop, to allow stopping execution in the middle of code blocks, by encapsulating them with - do..while (1), and using the do..while (0), and using the break statement. The following code fragment demonstrates this: @@ -364,7 +364,7 @@ do { /* process i */ -} while (1); +} while (0); ?> ]]>