What changed, and why it matters
This commit fixes a spelling mistake in a code comment ('Chcek' to 'Check'). No program logic, user interface behavior, or security properties were changed.
No security action needed. Treat as a routine documentation cleanup.
Security signals we found
No strong security signals were identified.
Evidence from the diff
Single-character documentation-only change in a Rust source file comment within the Trezor firmware UI code. The diff changes one misspelled word in a doc comment above the is_max_offset() method. There are no code, configuration, build, or cryptographic changes.
Changed components
core/embed/rust/src/ui/layout_eckhart/firmware/vertical_menu.rsInspect captured patch +1 / −1
diff --git a/core/embed/rust/src/ui/layout_eckhart/firmware/vertical_menu.rs b/core/embed/rust/src/ui/layout_eckhart/firmware/vertical_menu.rs
index d74bec4b..2190cfd0 100644
--- a/core/embed/rust/src/ui/layout_eckhart/firmware/vertical_menu.rs
+++ b/core/embed/rust/src/ui/layout_eckhart/firmware/vertical_menu.rs
@@ -166,7 +166,7 @@ impl<T: MenuItems> VerticalMenu<T> {
self.offset_y = offset_y.max(0).min(self.offset_y_max);
}
- /// Chcek if the menu is on the bottom.
+ /// Check if the menu is on the bottom.
pub fn is_max_offset(&self) -> bool {
self.offset_y == self.offset_y_max
}
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.