aboutsummaryrefslogtreecommitdiff
path: root/helix-dap/src
diff options
context:
space:
mode:
authorBlaž Hrastnik2021-08-16 05:01:07 +0000
committerBlaž Hrastnik2021-08-20 04:43:54 +0000
commit8fbda0abaf337448dff56779a69fa97d99015f11 (patch)
tree4a948be7ab3535f1f96b55b03a50af5e31a94ecd /helix-dap/src
parent184abdc51061bd1636f31edcb51d71d0362a3d83 (diff)
fix: Used the wrong type for variables
Diffstat (limited to 'helix-dap/src')
-rw-r--r--helix-dap/src/types.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-dap/src/types.rs b/helix-dap/src/types.rs
index d57c533d..b37cef01 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";
}
}