From 01d4e835c1c7f7035efe6c187a0137dd2432c2c3 Mon Sep 17 00:00:00 2001 From: lcnr Date: Wed, 30 Mar 2022 11:24:26 +0200 Subject: [PATCH] typo --- compiler/rustc_metadata/src/rmeta/decoder.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.