Skip to content

Commit bc09264

Browse files
committed
Convert chunk name to string
1 parent d436bc5 commit bc09264

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/elixir/scripts/diff.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ defmodule Diff do
125125
chunk1 != chunk2 do
126126
tmp_file1 = chunk1 |> formatter.() |> write_tmp()
127127
tmp_file2 = chunk2 |> formatter.() |> write_tmp()
128-
[name1, ?\n, file_diff(tmp_file1, tmp_file2)]
128+
[to_string(name1), ?\n, file_diff(tmp_file1, tmp_file2)]
129129
end
130130
end
131131
else

0 commit comments

Comments
 (0)