From 6202d374bd50aefea17edd6b9e12f7749b57dd0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?T=C3=96R=C3=96K=20Attila?= Date: Wed, 27 Nov 2024 15:12:25 +0100 Subject: [PATCH] chore: Fix a typo in a comment in Cargo.toml --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 6bb74a6e282b..1f910562be71 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -87,7 +87,7 @@ unexpected_cfgs = { level = "warn", check-cfg = ['cfg(wasm_bindgen_unstable_test [workspace.lints.clippy] # LONG-TERM: These lints are unhelpful. -manual_map = "allow" # Less readable: Suggests `opt.map(..)` instsead of `if let Some(opt) { .. }` +manual_map = "allow" # Less readable: Suggests `opt.map(..)` instead of `if let Some(opt) { .. }` manual_range_contains = "allow" # Less readable: Suggests `(a..b).contains(n)` instead of `n >= a && n < b` assigning_clones = "allow" # Sometimes useful, but more often than not it doesn't do anything as # we overwrite an empty item. And sometimes it can even be a footgun