Files
iban-ex/lib/iban_ex.ex
Danylo Negrienko 492cb2378e Improve type specifications and documentation
- 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
2025-12-02 11:14:40 -05:00

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