diff --git a/doc/CHECKLIST.md b/doc/CHECKLIST.md index 1f8760bb..7c896095 100644 --- a/doc/CHECKLIST.md +++ b/doc/CHECKLIST.md @@ -543,7 +543,7 @@ pub enum TabId { - [x] Simplified code: `contains(&TabId::Profile)` instead of `iter().any(|t| t == "profile")` **Benefits**: -- Compile-time checking prevents typos like `"profiel"` or `"setings"` +- Compile-time checking prevents typos like `"profiel"` or `"settigns"` - IDE autocomplete works with enum variants - Exhaustive match ensures all cases handled - `Copy` trait allows efficient passing without `.clone()` or `.to_string()`