aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src/commands/dap.rs
diff options
context:
space:
mode:
authorBlaž Hrastnik2021-11-07 12:18:53 +0000
committerBlaž Hrastnik2021-11-07 12:18:53 +0000
commit2bd8a9b39df795f68e74ccd48fcb2b2b50fc9313 (patch)
tree7e29612d8971025f9f3ee4cf291da4dd5de9fdfb /helix-term/src/commands/dap.rs
parent31b431bfdd7bebc437cb563dd0105bcb13ec3235 (diff)
dap: Consistently rename type as ty
Diffstat (limited to 'helix-term/src/commands/dap.rs')
-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(),
};