mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
Revert wrong fix
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@174618 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
1def3f4c8e
commit
a9a37c4b6c
1 changed files with 3 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.112 $ -->
|
||||
<!-- $Revision: 1.113 $ -->
|
||||
<chapter id="language.control-structures">
|
||||
<title>Control Structures</title>
|
||||
|
||||
|
@ -348,7 +348,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>
|
||||
|
@ -368,7 +368,7 @@ do {
|
|||
|
||||
/* process i */
|
||||
|
||||
} while (1);
|
||||
} while (0);
|
||||
?>
|
||||
]]>
|
||||
</programlisting>
|
||||
|
|
Loading…
Reference in a new issue