Skip to content

Commit 7b00aa0

Browse files
committed
Fix register_condition spec argument list
1 parent 93094ea commit 7b00aa0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

apps/debug_adapter/lib/debug_adapter/breakpoint_condition.ex

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,10 @@ defmodule ElixirLS.DebugAdapter.BreakpointCondition do
1717
module,
1818
module,
1919
non_neg_integer,
20+
Macro.Env.t(),
2021
String.t(),
2122
String.t() | nil,
22-
String.t()
23+
non_neg_integer
2324
) ::
2425
{:ok, {module, atom}} | {:error, :limit_reached}
2526
def register_condition(name \\ __MODULE__, module, line, env, condition, log_message, hit_count) do

0 commit comments

Comments
 (0)