Skip to content

Commit 5a2fae5

Browse files
committed
Merge pull request phpbridge#30 from ericpoe/master
Fixes phpbridge#25
2 parents 369aea2 + 5eb5952 commit 5a2fae5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sites/intro-to-php/php_language.step

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ Another common loop, is known as the `for` loop. This loop has three conditions:
181181
MARKDOWN
182182

183183
source_code :php, <<-PHP
184-
for ($i = 0; $i < sizeof($fruits), $i++) {
184+
for ($i = 0; $i < sizeof($fruits); $i++) {
185185
echo $fruits[$i] . PHP_EOL;
186186
}
187187
PHP

0 commit comments

Comments
 (0)