Skip to content

Commit 07e85a8

Browse files
committed
Fix underscored variable warning
1 parent 5e1223e commit 07e85a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/exvcr/actor.ex

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ defmodule ExVCR.Actor do
5555

5656
use ExActor.GenServer, export: __MODULE__
5757

58-
defstart(start_link(_arg), do: default_state() |> initial_state())
58+
defstart(start_link(_), do: default_state() |> initial_state())
5959

6060
defcast(set(x), do: new_state(x))
6161
defcall(get, state: state, do: reply(state))

0 commit comments

Comments
 (0)