mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-04-27 07:33:57 +00:00
Minor spacing tweak
This commit is contained in:
parent
07bc89d1b3
commit
fa03534bb8
@ -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
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user