File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
compiler/rustc_errors/src Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -407,7 +407,7 @@ pub struct ExplicitBug;
407
407
/// rather than a failed assertion, etc.
408
408
pub struct DelayedBugPanic ;
409
409
410
- /// A handler deals with errors and other compiler output.
410
+ /// A `DiagCtxt` deals with errors and other compiler output.
411
411
/// Certain errors (fatal, bug, unimpl) may cause immediate exit,
412
412
/// others log errors for later reporting.
413
413
pub struct DiagCtxt {
@@ -444,7 +444,7 @@ struct DiagCtxtInner {
444
444
emitted_diagnostic_codes : FxIndexSet < DiagnosticId > ,
445
445
446
446
/// This set contains a hash of every diagnostic that has been emitted by
447
- /// this handler . These hashes is used to avoid emitting the same error
447
+ /// this `DiagCtxt` . These hashes is used to avoid emitting the same error
448
448
/// twice.
449
449
emitted_diagnostics : FxHashSet < Hash128 > ,
450
450
You can’t perform that action at this time.
0 commit comments