aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src
diff options
context:
space:
mode:
Diffstat (limited to 'helix-term/src')
-rw-r--r--helix-term/src/commands/dap.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/src/commands/dap.rs b/helix-term/src/commands/dap.rs
index 89018bc1..2695bb9b 100644
--- a/helix-term/src/commands/dap.rs
+++ b/helix-term/src/commands/dap.rs
@@ -598,7 +598,7 @@ pub fn dap_variables(cx: &mut Context) {
if let Ok(vars) = response {
variables.reserve(vars.len());
for var in vars {
- let prefix = match var.data_type {
+ let prefix = match var.ty {
Some(data_type) => format!("{} ", data_type),
None => "".to_owned(),
};