diff options
author | avimar <avi@amarcus.com> | 2017-08-11 06:43:33 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-11 06:43:33 +0300 |
commit | c4b9f335491d7393860f5ac14bcf2b9e70db498b (patch) | |
tree | a99d28e77a5b303282f8baad394f32285e46c022 /php.html.markdown | |
parent | 6e7c5c793327f4a63b13e555894597915ca91fda (diff) |
php: fix double language for arrays
Diffstat (limited to 'php.html.markdown')
-rw-r--r-- | php.html.markdown | 4 |
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); |