mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-04 21:37:57 +03:00
Reword spurious errors comment
This commit is contained in:
parent
2075e87257
commit
485c2b7eed
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ pub fn derive(input: &DeriveInput) -> TokenStream {
|
||||||
match try_expand(input) {
|
match try_expand(input) {
|
||||||
Ok(expanded) => expanded,
|
Ok(expanded) => expanded,
|
||||||
// If there are invalid attributes in the input, expand to an Error impl
|
// 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.
|
// this type as an Error.
|
||||||
Err(error) => fallback::expand(input, error),
|
Err(error) => fallback::expand(input, error),
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue