Change variable name

Co-authored-by: Luke Street <luke@street.dev>
This commit is contained in:
LagoLunatic 2024-12-02 00:59:22 -05:00
parent c0e9af54a5
commit d773b8c14f
1 changed files with 2 additions and 2 deletions

View File

@ -150,8 +150,8 @@ fn ins_hover_ui(
}
}
if let Some(demangled) = rlwinmdec::decode(&ins.formatted) {
ui.colored_label(appearance.highlight_color, demangled.trim());
if let Some(decoded) = rlwinmdec::decode(&ins.formatted) {
ui.colored_label(appearance.highlight_color, decoded.trim());
}
});
}