Merge pull request #252 from bailon/patch-1

Fix variable name in lists example
This commit is contained in:
Rico Sta. Cruz 2017-11-15 23:58:11 +08:00 committed by GitHub
commit 1132310399
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)
``` ```