Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions lib/iex/lib/iex/introspection.ex
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,7 @@ defmodule IEx.Introspection do
true ->
module.module_info(:exports)
end
|> Enum.sort()

result =
for {^function, arity} <- exports,
Expand Down
12 changes: 6 additions & 6 deletions lib/iex/test/iex/helpers_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -343,6 +343,12 @@ defmodule IEx.HelpersTest do
"""

assert capture_io(fn -> h(:timer.send_interval()) end) == """
* :timer.send_interval/2

@spec send_interval(time, message) :: {:ok, tRef} | {:error, reason}
when time: time(), message: term(), tRef: tref(), reason: term()

Module was compiled without docs. Showing only specs.
* :timer.send_interval/3

@spec send_interval(time, pid, message) :: {:ok, tRef} | {:error, reason}
Expand All @@ -352,12 +358,6 @@ defmodule IEx.HelpersTest do
tRef: tref(),
reason: term()

Module was compiled without docs. Showing only specs.
* :timer.send_interval/2

@spec send_interval(time, message) :: {:ok, tRef} | {:error, reason}
when time: time(), message: term(), tRef: tref(), reason: term()

Module was compiled without docs. Showing only specs.
"""
end
Expand Down