defmodule PhxFormatter do @moduledoc """ Documentation for `PhxFormatter`. """ @doc """ Hello world. ## Examples iex> PhxFormatter.hello() :world """ def hello do :world end end