1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-07-31 20:10: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;
while ($i < 5) {
echo $i++;
}; // Prints "01234"
} // Prints "01234"
echo "\n";