diff options
author | Yerkebulan Tulibergenov <yerkebulan@gmail.com> | 2017-06-16 00:40:47 -0700 |
---|---|---|
committer | ven <vendethiel@hotmail.fr> | 2017-06-16 09:40:47 +0200 |
commit | 34b6b504fa30f8c344ac111ea7474e336136f5c4 (patch) | |
tree | ef1de9366e3431b4d8f0ec2564d8235785008b87 | |
parent | 1adf002021e9c51b721c0f1f14a5fa57bb8d6027 (diff) |
[PHP/en]Fix small typo in PHP English tutorial (#2761)
-rw-r--r-- | php.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/php.html.markdown b/php.html.markdown index ddf38226..f247ba77 100644 --- a/php.html.markdown +++ b/php.html.markdown @@ -342,7 +342,7 @@ switch ($x) { $i = 0; while ($i < 5) { echo $i++; -}; // Prints "01234" +} // Prints "01234" echo "\n"; |