We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa350b1 commit 0acbb15Copy full SHA for 0acbb15
lib/elixir/lib/protocol.ex
@@ -280,7 +280,9 @@ defmodule Protocol do
280
type_args = :lists.map(fn _ -> quote(do: term) end, :lists.seq(2, arity))
281
type_args = [quote(do: t) | type_args]
282
283
- convert_variables = fn pos -> Macro.var(String.to_atom("arg" <> Integer.to_string(pos)), __MODULE__) end
+ convert_variables = fn pos ->
284
+ Macro.var(String.to_atom("arg" <> Integer.to_string(pos)), __MODULE__)
285
+ end
286
287
call_args = :lists.map(convert_variables, :lists.seq(2, arity))
288
call_args = [quote(do: term) | call_args]
0 commit comments