minor example typo

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@79381 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Friedhelm Betz 2002-04-22 07:16:12 +00:00
parent a63410b81f
commit 94b6b83b1f

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.56 $ -->
<!-- $Revision: 1.57 $ -->
<chapter id="control-structures">
<title>Control Structures</title>
@ -689,7 +689,7 @@ while (list ($key, $value) = each ($arr)) {
}
$i = 0;
while ($i++ &lt; 5) {
while ($i++ < 5) {
echo "Outer<br>\n";
while (1) {
echo "&nbsp;&nbsp;Middle<br>\n";