Minor spacing tweak

This commit is contained in:
Malcolm Fell 2013-06-30 12:29:34 +12:00
parent 07bc89d1b3
commit fa03534bb8

View File

@ -305,7 +305,7 @@ while ($i < 5) {
echo $i++;
} // Prints "012"
for($i = 0; $i < 5; $i++){
for ($i = 0; $i < 5; $i++) {
if ($i === 3) {
continue; // Skip this iteration of the loop
}