git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@162921 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Dave Barr 2004-07-09 16:06:48 +00:00
parent 59d27e72d5
commit 31a32222bc

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.93 $ -->
<!-- $Revision: 1.94 $ -->
<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> (1), and using the <link
<literal>do..while</literal> (0), 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 (1);
} while (0);
?>
]]>
</programlisting>