rflazaro
rflazaro
**Describe the issue** Timer.seconds should be Timer.seconds.get_time per requirements ```elixir {:ok, pid} = Timer.start_link([]) Timer.get_time(pid) 0 Process.sleep(1500) Timer.seconds(pid) 1 ``` --- @moduledoc """ iex> {:ok, pid} = Timer.start_link([]) iex> Timer.seconds(pid)...
**Describe the issue** Minor text issue: State should be InitialState. Call [GenServer.start_link/3](https://hexdocs.pm/elixir/GenServer.html#start_link/3) to spawn a `State` GenServer with an initial state. **Expected behavior** Updated text: Call [GenServer.start_link/3](https://hexdocs.pm/elixir/GenServer.html#start_link/3) to spawn a...