From 8fbda0abaf337448dff56779a69fa97d99015f11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bla=C5=BE=20Hrastnik?= Date: Mon, 16 Aug 2021 14:01:07 +0900 Subject: [PATCH] fix: Used the wrong type for variables --- helix-dap/src/types.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helix-dap/src/types.rs b/helix-dap/src/types.rs index d57c533dd..b37cef016 100644 --- a/helix-dap/src/types.rs +++ b/helix-dap/src/types.rs @@ -402,7 +402,7 @@ pub mod requests { impl Request for Variables { type Arguments = VariablesArguments; type Result = VariablesResponse; - const COMMAND: &'static str = "scopes"; + const COMMAND: &'static str = "variables"; } }