From 2d499d8f4aa5c7a4739898057dafc4dbf67ea3c7 Mon Sep 17 00:00:00 2001 From: Jeremy S Date: Fri, 22 Mar 2024 22:19:31 +0000 Subject: [PATCH] Fix typo in exhaustive_items.rs --- clippy_lints/src/exhaustive_items.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clippy_lints/src/exhaustive_items.rs b/clippy_lints/src/exhaustive_items.rs index 3a621d967f43..9ffda6457424 100644 --- a/clippy_lints/src/exhaustive_items.rs +++ b/clippy_lints/src/exhaustive_items.rs @@ -38,7 +38,7 @@ declare_clippy_lint! { declare_clippy_lint! { /// ### What it does - /// Warns on any exported `structs`s that are not tagged `#[non_exhaustive]` + /// Warns on any exported `struct`s that are not tagged `#[non_exhaustive]` /// /// ### Why is this bad? /// Exhaustive structs are typically fine, but a project which does