diff --git a/apps/debug_adapter/lib/debug_adapter.ex b/apps/debug_adapter/lib/debug_adapter.ex index 678e2971e..02f4395d8 100644 --- a/apps/debug_adapter/lib/debug_adapter.ex +++ b/apps/debug_adapter/lib/debug_adapter.ex @@ -11,7 +11,7 @@ defmodule ElixirLS.DebugAdapter do Launch.start_mix() if Version.match?(System.version(), ">= 1.15.0-dev") do - # make sue that OTP debugger modules are in code path + # make sure that OTP debugger modules are in code path # without starting the app Mix.ensure_application!(:debugger) end diff --git a/apps/debug_adapter/test/test_helper.exs b/apps/debug_adapter/test/test_helper.exs index 8962d82ad..876d81e04 100644 --- a/apps/debug_adapter/test/test_helper.exs +++ b/apps/debug_adapter/test/test_helper.exs @@ -2,7 +2,7 @@ ExUnit.start(exclude: [pending: true]) if Version.match?(System.version(), ">= 1.15.0") do - # make sue that OTP debugger modules are in code path + # make sure that OTP debugger modules are in code path # without starting the app Mix.ensure_application!(:debugger) end