diff options
author | Adam Bard <github@adambard.com> | 2017-08-18 10:12:27 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-18 10:12:27 -0700 |
commit | 4fb11b5e840620b84e196ce5268c9ea5463e75cb (patch) | |
tree | e6284e97be0696913dec97c8980e2b274aeffa67 | |
parent | aac1e3599669dde74ca16529f99b785d651e9a9e (diff) | |
parent | c4b9f335491d7393860f5ac14bcf2b9e70db498b (diff) |
Merge pull request #2824 from avimar/patch-1
[php/en] fix double language for arrays
-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); |