From f83ab25c736cec2ad4e65f688a3fb25f7e0e94ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Samson?= Date: Wed, 11 Jun 2025 01:04:20 +0200 Subject: [PATCH] Fix comment typo for OTP debugger modules --- apps/debug_adapter/lib/debug_adapter.ex | 2 +- apps/debug_adapter/test/test_helper.exs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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