Fix variable name in lists example

This commit is contained in:
Bruno Merino-Bailón 2017-11-09 19:31:33 +01:00 committed by GitHub
parent 6bfd554ce9
commit d0de1be2cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ users = [ "Tom", "Dick", "Harry" ]
{: data-line="1"} {: data-line="1"}
```elixir ```elixir
Enum.map(user, fn user -> Enum.map(users, fn user ->
IO.puts "Hello " <> user IO.puts "Hello " <> user
end) end)
``` ```