mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
Fixes Bug #44641 (simple typo).
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@256788 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
83a7238c25
commit
f3959d5987
1 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.159 $ -->
|
||||
<!-- $Revision: 1.160 $ -->
|
||||
<chapter xml:id="language.control-structures" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title>Control Structures</title>
|
||||
|
||||
|
@ -317,7 +317,7 @@ endwhile;
|
|||
The main difference from regular <literal>while</literal> loops is
|
||||
that the first iteration of a <literal>do-while</literal> loop is
|
||||
guaranteed to run (the truth expression is only checked at the end
|
||||
of the iteration), whereas it's may not necessarily run with a
|
||||
of the iteration), whereas it may not necessarily run with a
|
||||
regular <literal>while</literal> loop (the truth expression is
|
||||
checked at the beginning of each iteration, if it evaluates to
|
||||
&false; right from the beginning, the loop
|
||||
|
|
Loading…
Reference in a new issue