Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/CHECKLIST.md
Original file line number Diff line number Diff line change
Expand Up @@ -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()`
Expand Down