added the comment between foreach and while, thanks jfarrell

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@166366 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
jared wyles 2004-08-14 06:31:04 +00:00
parent 9be2174cc0
commit f52b446089

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.104 $ -->
<!-- $Revision: 1.105 $ -->
<chapter id="language.control-structures">
<title>Control Structures</title>
@ -679,7 +679,7 @@ foreach (array(1, 2, 3, 4, 5) as $v) {
<title><literal>break</literal></title>
<simpara>
<literal>break</literal> ends execution of the current
<literal>for</literal>, <literal>foreach</literal>
<literal>for</literal>, <literal>foreach</literal>,
<literal>while</literal>, <literal>do..while</literal> or
<literal>switch</literal> structure.
</simpara>