mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-05-23 06:40:58 +00:00
Minor spacing tweak
This commit is contained in:
parent
07bc89d1b3
commit
fa03534bb8
@ -305,7 +305,7 @@ while ($i < 5) {
|
|||||||
echo $i++;
|
echo $i++;
|
||||||
} // Prints "012"
|
} // Prints "012"
|
||||||
|
|
||||||
for($i = 0; $i < 5; $i++){
|
for ($i = 0; $i < 5; $i++) {
|
||||||
if ($i === 3) {
|
if ($i === 3) {
|
||||||
continue; // Skip this iteration of the loop
|
continue; // Skip this iteration of the loop
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user