Skip to content

Commit

Permalink
Added missing dollar sign to 2 code examples variables (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
elhardoum authored and pierredup committed Sep 4, 2018
1 parent 7900274 commit addd938
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,10 +134,10 @@ Example:
$array = [1];
$other = concat($array, 2, [3], [[4]]);

var_dump(other)
var_dump($other)
// => [1, 2, 3, [4]]

var_dump(array)
var_dump($array)
// => [1]

```
Expand Down

0 comments on commit addd938

Please sign in to comment.