diff options
author | tleb <theo.lebrun@live.fr> | 2015-05-14 21:30:15 +0000 |
---|---|---|
committer | tleb <theo.lebrun@live.fr> | 2015-05-14 21:30:15 +0000 |
commit | 7458e15cd208982f12ae3a8d04261aaaf8332044 (patch) | |
tree | b539010b27a2b5ff5bf4f91a7c6a3c9f6eefa559 | |
parent | 77e79db34783327ec0a41d5ade30073bc8ab4b30 (diff) |
add ; to php/en
-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 039288a0..2d4565e0 100644 --- a/php.html.markdown +++ b/php.html.markdown @@ -60,7 +60,7 @@ $float = 1.2e3; $float = 7E-10; // Delete variable -unset($int1) +unset($int1); // Arithmetic $sum = 1 + 1; // 2 |