fix concat result

This commit is contained in:
Gustavo Gimenez 2018-01-03 22:12:25 -03:00
parent 8cd37fc293
commit f81377fb28
1 changed files with 1 additions and 1 deletions

View File

@ -477,7 +477,7 @@ list |> any?() # → true
```
```elixir
list |> concat([:d]) # → [:d]
list |> concat([:d]) # → [:a, :b, :c, :d]
```
Also, consider streams instead.