misc: IO is probably ok written in caps

This commit is contained in:
2025-06-15 16:26:02 +01:00
parent dc196cf2d8
commit aca73589de
+3 -3
View File
@@ -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<Self> {
vec![Self::Control, Self::Memory, Self::Io, Self::Programming]
vec![Self::Control, Self::Memory, Self::IO, Self::Programming]
}
}