From f3959d59871e00d07ad5ae374b1b5a6f4b1961a7 Mon Sep 17 00:00:00 2001 From: "Daniel P. Brown" Date: Fri, 4 Apr 2008 18:09:43 +0000 Subject: [PATCH] Fixes Bug #44641 (simple typo). git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@256788 c90b9560-bf6c-de11-be94-00142212c4b1 --- language/control-structures.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/language/control-structures.xml b/language/control-structures.xml index a1ec3e85b0..3742dc741f 100644 --- a/language/control-structures.xml +++ b/language/control-structures.xml @@ -1,5 +1,5 @@ - + Control Structures @@ -317,7 +317,7 @@ endwhile; The main difference from regular while loops is that the first iteration of a do-while 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 while loop (the truth expression is checked at the beginning of each iteration, if it evaluates to &false; right from the beginning, the loop