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 @@ - + 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 (0), and using the do..while (1), and using the break statement. The following code fragment demonstrates this: @@ -364,7 +364,7 @@ do { /* process i */ -} while (0); +} while (1); ?> ]]>