Skip to content

Commit cf9e53a

Browse files
Update lib/elixir/lib/enum.ex
Co-authored-by: José Valim <[email protected]>
1 parent 5259f92 commit cf9e53a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/elixir/lib/enum.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4110,7 +4110,7 @@ defmodule Enum do
41104110
41114111
## Examples
41124112
4113-
iex> Enum.zip_reduce([1, 2], [3, 4, 5], 0, fn x, y, acc -> x + y + acc end)
4113+
iex> Enum.zip_reduce([1, 2], [3, 4], 0, fn x, y, acc -> x + y + acc end)
41144114
10
41154115
41164116
If one of the lists has more entries than the others,

0 commit comments

Comments
 (0)