1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-06 23:06:49 +02:00

[PHP/en]Fix small typo in PHP English tutorial (#2761)

This commit is contained in:
Yerkebulan Tulibergenov
2017-06-16 00:40:47 -07:00
committed by ven
parent 1adf002021
commit 34b6b504fa

View File

@@ -342,7 +342,7 @@ switch ($x) {
$i = 0; $i = 0;
while ($i < 5) { while ($i < 5) {
echo $i++; echo $i++;
}; // Prints "01234" } // Prints "01234"
echo "\n"; echo "\n";