where continue continues (bug #33119)

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@186924 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Jakub Vrana 2005-05-24 09:55:58 +00:00
parent 6084172faf
commit 8b49b2e359

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.117 $ -->
<!-- $Revision: 1.118 $ -->
<chapter id="language.control-structures">
<title>Control Structures</title>
@ -733,7 +733,7 @@ while (++$i) {
<simpara>
<literal>continue</literal> is used within looping structures to
skip the rest of the current loop iteration and continue execution
at the beginning of the next iteration.
at the condition evaluation and then the beginning of the next iteration.
</simpara>
<note>
<simpara>