From 485c2b7eed2702c4a109be3cf42bb4be27fe16bd Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sun, 8 Dec 2024 11:28:58 -0800 Subject: [PATCH] Reword spurious errors comment --- impl/src/expand.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/impl/src/expand.rs b/impl/src/expand.rs index 20ba1d2..4441a24 100644 --- a/impl/src/expand.rs +++ b/impl/src/expand.rs @@ -12,7 +12,7 @@ pub fn derive(input: &DeriveInput) -> TokenStream { match try_expand(input) { Ok(expanded) => expanded, // If there are invalid attributes in the input, expand to an Error impl - // anyway to minimize spurious knock-on errors in other code that uses + // anyway to minimize spurious secondary errors in other code that uses // this type as an Error. Err(error) => fallback::expand(input, error), }