I am updating my @doc while in iex> to test how it looks. The problem I am coming up against is that I have to exit iex to view the updated @doc documentation. Is there a way to reload the modules @doc variables when using r()?
iex -S mix
iex> h Coordinate.island/1
## Examples
iex> {:ok, coord } = Cordinate.start_link
Cordinate.island(coord)
:falls_town
Updated @doc to return :none instead of :falls_town and save file.
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