diff --git a/compiler/rustc_metadata/src/rmeta/decoder.rs b/compiler/rustc_metadata/src/rmeta/decoder.rs index 7c5f6d4c62d..e88ef68c722 100644 --- a/compiler/rustc_metadata/src/rmeta/decoder.rs +++ b/compiler/rustc_metadata/src/rmeta/decoder.rs @@ -97,7 +97,7 @@ crate struct CrateMetadata { trait_impls: FxHashMap<(u32, DefIndex), Lazy<[(DefIndex, Option)]>>, /// Inherent impls which do not follow the normal coherence rules. /// - /// These can be introduces using either `#![rustc_coherence_is_core]` + /// These can be introduced using either `#![rustc_coherence_is_core]` /// or `#[rustc_allow_incoherent_impl]`. incoherent_impls: FxHashMap>, /// Proc macro descriptions for this crate, if it's a proc macro crate.