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); ?> ]]>