我在 iex> 中更新我的@doc 以测试它的外观。我遇到的问题是我必须退出 iex 才能查看更新的 @doc 文档。使用 r() 时有没有办法重新加载模块 @doc 变量?
iex -S mix
iex> h Coordinate.island/1
## Examples
iex> {:ok, coord } = Cordinate.start_link
Cordinate.island(coord)
:falls_town
更新 @doc 以返回 :none 而不是 :falls_town 并保存文件。
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