summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authoravimar <avi@amarcus.com>2017-08-11 06:43:33 +0300
committerGitHub <noreply@github.com>2017-08-11 06:43:33 +0300
commitc4b9f335491d7393860f5ac14bcf2b9e70db498b (patch)
treea99d28e77a5b303282f8baad394f32285e46c022
parent6e7c5c793327f4a63b13e555894597915ca91fda (diff)
php: fix double language for arrays
-rw-r--r--php.html.markdown4
1 files changed, 1 insertions, 3 deletions
diff --git a/php.html.markdown b/php.html.markdown
index f247ba77..ac9b45a8 100644
--- a/php.html.markdown
+++ b/php.html.markdown
@@ -132,9 +132,7 @@ echo 'This outputs ' . FOO; // Returns 'This ouputs something'
* Arrays
*/
-// All arrays in PHP are associative arrays (hashmaps),
-
-// Associative arrays, known as hashmaps in some languages.
+// All arrays in PHP are associative arrays (hashmaps in some languages)
// Works with all PHP versions
$associative = array('One' => 1, 'Two' => 2, 'Three' => 3);