Fix a comment.

There are quite a few hand-written `IntoDiagnostic` impls.
This commit is contained in:
Nicholas Nethercote 2023-12-22 10:32:00 +11:00
parent 81f50fd7e3
commit 3db58e636f

View File

@ -15,7 +15,7 @@
use std::panic;
use std::thread::panicking;
/// Trait implemented by error types. This should not be implemented manually. Instead, use
/// Trait implemented by error types. This is rarely implemented manually. Instead, use
/// `#[derive(Diagnostic)]` -- see [rustc_macros::Diagnostic].
#[rustc_diagnostic_item = "IntoDiagnostic"]
pub trait IntoDiagnostic<'a, G: EmissionGuarantee = ErrorGuaranteed> {