From e2eb4535327a4a222b67ad29820a5e61f1d69b73 Mon Sep 17 00:00:00 2001 From: Igor Aleksanov Date: Wed, 30 Jun 2021 20:00:30 +0400 Subject: [PATCH] Update clippy_lints/src/disallowed_script_idents.rs Co-authored-by: Cameron Steffen --- clippy_lints/src/disallowed_script_idents.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clippy_lints/src/disallowed_script_idents.rs b/clippy_lints/src/disallowed_script_idents.rs index 26ddf5e5725a..12c525634c51 100644 --- a/clippy_lints/src/disallowed_script_idents.rs +++ b/clippy_lints/src/disallowed_script_idents.rs @@ -6,7 +6,7 @@ use rustc_session::{declare_tool_lint, impl_lint_pass}; use unicode_script::{Script, UnicodeScript}; declare_clippy_lint! { - /// **What it does:** Checks for usage of unicode scripts other than explicitly allowed + /// **What it does:** Checks for usage of unicode scripts other than those explicitly allowed /// by the lint config. /// /// This lint doesn't take into account non-text scripts such as `Unknown` and `Linear_A`.