Reword spurious errors comment

This commit is contained in:
David Tolnay 2024-12-08 11:28:58 -08:00
parent 2075e87257
commit 485c2b7eed
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82

View file

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