Typo in manual

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@174616 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Alexander Voytsekhovskyy 2004-12-13 18:12:04 +00:00
parent d043ce67ff
commit 1def3f4c8e

View file

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