From a9a37c4b6c28b620e043797990b2333157f800b3 Mon Sep 17 00:00:00 2001 From: Alexander Voytsekhovskyy Date: Mon, 13 Dec 2004 19:01:41 +0000 Subject: [PATCH] Revert wrong fix git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@174618 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 6fcf49b212..4360ed7394 100644 --- a/language/control-structures.xml +++ b/language/control-structures.xml @@ -1,5 +1,5 @@ - + Control Structures @@ -348,7 +348,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: @@ -368,7 +368,7 @@ do { /* process i */ -} while (1); +} while (0); ?> ]]>