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), }