Skip to content

Commit c1aec54

Browse files
committed
use proper list
1 parent c40182e commit c1aec54

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/elixir/lib/macro.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2893,7 +2893,7 @@ defmodule Macro do
28932893
defp dbg_format_ast_to_debug({:pipe_end, code_ast, value}, options) do
28942894
{formatted, value} = dbg_format_ast_to_debug({:pipe, code_ast, value}, options)
28952895

2896-
{[formatted | ?\n], value}
2896+
{[formatted, ?\n], value}
28972897
end
28982898

28992899
defp dbg_format_ast_to_debug({:case_argument, expr_ast, expr_value}, options) do

0 commit comments

Comments
 (0)