about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJoel Natividad <1980690+jqnatividad@users.noreply.github.com>2024-04-10 08:46:03 -0400
committerJoel Natividad <1980690+jqnatividad@users.noreply.github.com>2024-04-10 08:46:03 -0400
commitd7a8622bf41a149cab0c464b70229632bf8a4f7e (patch)
tree560c4ad340f1f3bd4d208800fa9801d975aeaec3
parent62fd1d5377c0bb917761b9fff4a2851d8921d932 (diff)
downloadrust-d7a8622bf41a149cab0c464b70229632bf8a4f7e.tar.gz
rust-d7a8622bf41a149cab0c464b70229632bf8a4f7e.zip
Why is this bad explanation typo
-rw-r--r--clippy_lints/src/derive.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/derive.rs b/clippy_lints/src/derive.rs
index 5f9700b76d9..42cd19fb8ec 100644
--- a/clippy_lints/src/derive.rs
+++ b/clippy_lints/src/derive.rs
@@ -132,7 +132,7 @@ declare_clippy_lint! {
     ///
     /// ### Why is this bad?
     /// Deriving `serde::Deserialize` will create a constructor
-    /// that may violate invariants hold by another constructor.
+    /// that may violate invariants held by another constructor.
     ///
     /// ### Example
     /// ```rust,ignore