Skip to content

Commit 0acbb15

Browse files
committed
Format
1 parent aa350b1 commit 0acbb15

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lib/elixir/lib/protocol.ex

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,9 @@ defmodule Protocol do
280280
type_args = :lists.map(fn _ -> quote(do: term) end, :lists.seq(2, arity))
281281
type_args = [quote(do: t) | type_args]
282282

283-
convert_variables = fn pos -> Macro.var(String.to_atom("arg" <> Integer.to_string(pos)), __MODULE__) end
283+
convert_variables = fn pos ->
284+
Macro.var(String.to_atom("arg" <> Integer.to_string(pos)), __MODULE__)
285+
end
284286

285287
call_args = :lists.map(convert_variables, :lists.seq(2, arity))
286288
call_args = [quote(do: term) | call_args]

0 commit comments

Comments
 (0)