- Added missing type specifications for Hello function and rules - Updated documentation for the Deserialize protocol - Cleaned up IBAN validation function documentation - Enhanced test fixture generation with clearer parsing and error messages
20 lines
224 B
Elixir
20 lines
224 B
Elixir
defmodule IbanEx do
|
|
@moduledoc """
|
|
Documentation for `IbanEx`.
|
|
"""
|
|
|
|
@doc """
|
|
Hello world.
|
|
|
|
## Examples
|
|
|
|
iex> IbanEx.hello()
|
|
:world
|
|
|
|
"""
|
|
@spec hello() :: :world
|
|
def hello do
|
|
:world
|
|
end
|
|
end
|