Skip to content

Commit 94ba621

Browse files
Remove double quotes from printed strings in Enum.each example (#15031)
1 parent a077a6e commit 94ba621

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/elixir/lib/enum.ex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -973,8 +973,8 @@ defmodule Enum do
973973
## Examples
974974
975975
Enum.each(["some", "example"], fn x -> IO.puts(x) end)
976-
"some"
977-
"example"
976+
some
977+
example
978978
#=> :ok
979979
980980
"""

0 commit comments

Comments
 (0)