Skip to content

Commit

Permalink
Fix underscored variable warning
Browse files Browse the repository at this point in the history
  • Loading branch information
parroty committed Nov 16, 2020
1 parent 5e1223e commit 07e85a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/exvcr/actor.ex
Expand Up @@ -55,7 +55,7 @@ defmodule ExVCR.Actor do

use ExActor.GenServer, export: __MODULE__

defstart(start_link(_arg), do: default_state() |> initial_state())
defstart(start_link(_), do: default_state() |> initial_state())

defcast(set(x), do: new_state(x))
defcall(get, state: state, do: reply(state))
Expand Down

0 comments on commit 07e85a8

Please sign in to comment.