Skip to content

Commit 94f9d4e

Browse files
author
José Valim
committed
Enum.Iterator -> Enumerable
1 parent 66476b3 commit 94f9d4e

File tree

5 files changed

+54
-56
lines changed

5 files changed

+54
-56
lines changed

lib/elixir/lib/dict.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ defmodule Dict do
2929
...> dict[:hello]
3030
:world
3131
32-
And also the `Enum.Iterator` protocol, allowing one to write:
32+
And also the `Enumerable` protocol, allowing one to write:
3333
3434
Enum.each(dict, fn ({ k, v }) ->
3535
IO.puts "#{k}: #{v}"

0 commit comments

Comments
 (0)