From bde2cfabffe7a37a6a06e6f3c7af5e23fb7d2731 Mon Sep 17 00:00:00 2001 From: DebuggingMax Date: Mon, 23 Feb 2026 08:00:36 +0000 Subject: [PATCH] docs: fix typo in CHECKLIST.md example string Changes 'setings' to 'settigns' in the example showing typos that compile-time checking prevents. The previous spelling triggered codespell warnings. Fixes #33 --- doc/CHECKLIST.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()`