diff options
| author | Jeremy S <Jeremy@jsmoog.com> | 2024-03-22 22:19:31 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-22 22:19:31 +0000 |
| commit | 2d499d8f4aa5c7a4739898057dafc4dbf67ea3c7 (patch) | |
| tree | 6528632cc3a972a17c41c4e660d625f723a056be | |
| parent | c7bb20005464b69eeb0b56202b2ede49802c2c60 (diff) | |
| download | rust-2d499d8f4aa5c7a4739898057dafc4dbf67ea3c7.tar.gz rust-2d499d8f4aa5c7a4739898057dafc4dbf67ea3c7.zip | |
Fix typo in exhaustive_items.rs
| -rw-r--r-- | clippy_lints/src/exhaustive_items.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/exhaustive_items.rs b/clippy_lints/src/exhaustive_items.rs index 3a621d967f4..9ffda645742 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 |
