iex> にいる間に @doc を更新して、それがどのように見えるかをテストしています。私が直面している問題は、更新された @doc ドキュメントを表示するために iex を終了する必要があることです。r() を使用するときにモジュールの @doc 変数をリロードする方法はありますか?
iex -S mix
iex> h Coordinate.island/1
## Examples
iex> {:ok, coord } = Cordinate.start_link
Cordinate.island(coord)
:falls_town
:falls_town の代わりに :none を返し、ファイルを保存するように @doc を更新しました。
iex> r(Coordinate)
iex> h Coordinate.island/1
# issue: still showing the old @doc example
## Examples
iex> {:ok, coord } = Cordinate.start_link
Cordinate.island(coord)
:falls_town # should be :none