Merge pull request #20768 from ChayimFriedman2/std-error-syntaxerror
Some checks are pending
metrics / build_metrics (push) Waiting to run
metrics / other_metrics (diesel-1.4.8) (push) Blocked by required conditions
metrics / other_metrics (hyper-0.14.18) (push) Blocked by required conditions
metrics / other_metrics (ripgrep-13.0.0) (push) Blocked by required conditions
metrics / other_metrics (self) (push) Blocked by required conditions
metrics / other_metrics (webrender-2022) (push) Blocked by required conditions
metrics / generate_final_metrics (push) Blocked by required conditions
rustdoc / rustdoc (push) Waiting to run

minor: Impl `std::error::Error` for `SyntaxError`
This commit is contained in:
Chayim Refael Friedman 2025-09-30 12:52:35 +00:00 committed by GitHub
commit d733c07552
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -42,3 +42,5 @@ impl fmt::Display for SyntaxError {
self.0.fmt(f)
}
}
impl std::error::Error for SyntaxError {}