lib/section.ex
defmodule Section do
@moduledoc """
Documentation for `Section`.
"""
@doc """
Hello world.
## Examples
iex> Section.hello()
:world
"""
def hello do
:world
end
end
defmodule Section do
@moduledoc """
Documentation for `Section`.
"""
@doc """
Hello world.
## Examples
iex> Section.hello()
:world
"""
def hello do
:world
end
end