Dialyxir v1.0.0 Dialyxir.Warnings.ExtraRange View Source
The @spec says the function returns more types than the function actually returns.
Example
defmodule Example do
@spec ok() :: :ok | :error
def ok() do
:ok
end
end
The @spec says the function returns more types than the function actually returns.
defmodule Example do
@spec ok() :: :ok | :error
def ok() do
:ok
end
end