diff options
author | Blaž Hrastnik | 2021-11-07 12:18:53 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-11-07 12:18:53 +0000 |
commit | 2bd8a9b39df795f68e74ccd48fcb2b2b50fc9313 (patch) | |
tree | 7e29612d8971025f9f3ee4cf291da4dd5de9fdfb /helix-term/src | |
parent | 31b431bfdd7bebc437cb563dd0105bcb13ec3235 (diff) |
dap: Consistently rename type as ty
Diffstat (limited to 'helix-term/src')
-rw-r--r-- | helix-term/src/commands/dap.rs | 2 |
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(), }; |