Skip to content

Commit 39c33c7

Browse files
author
José Valim
committed
Fix h(c/2), closes #1101
1 parent 37054c8 commit 39c33c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/iex/lib/iex/introspection.ex

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ defmodule IEx.Introspection do
5353
end
5454

5555
def h(function, arity) when is_atom(function) and is_integer(arity) do
56-
h([__MODULE__, Kernel, Kernel.SpecialForms], function, arity)
56+
h([IEx.Helpers, Kernel, Kernel.SpecialForms], function, arity)
5757
end
5858

5959
def h(_, _) do

0 commit comments

Comments
 (0)