From aca73589de67c0ae64d10f0b941a715c57be6734 Mon Sep 17 00:00:00 2001 From: "J. Hinchliffe" Date: Sun, 15 Jun 2025 16:26:02 +0100 Subject: [PATCH] misc: IO is probably ok written in caps --- src/emulator/ui/interface.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/emulator/ui/interface.rs b/src/emulator/ui/interface.rs index f21c89b..6ada6da 100644 --- a/src/emulator/ui/interface.rs +++ b/src/emulator/ui/interface.rs @@ -12,7 +12,7 @@ pub trait Component { pub enum Category { Control, Memory, - Io, + IO, Programming, } @@ -22,14 +22,14 @@ impl Category { match self { Self::Control => "Control Systems", Self::Memory => "Memory Systems", - Self::Io => "I/O Systems", + Self::IO => "I/O Systems", Self::Programming => "Programming", } } #[must_use] pub fn list() -> Vec { - vec![Self::Control, Self::Memory, Self::Io, Self::Programming] + vec![Self::Control, Self::Memory, Self::IO, Self::Programming] } }