From 49b1db4f98915ef9cd73492eb099a82d363fe090 Mon Sep 17 00:00:00 2001 From: Yusuke Tanaka Date: Mon, 8 Feb 2021 00:55:38 +0900 Subject: [PATCH] Fix typo in Bug Fix Procedure --- src/bug-fix-procedure.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/bug-fix-procedure.md b/src/bug-fix-procedure.md index 66b200f9e..8702f8aa9 100644 --- a/src/bug-fix-procedure.md +++ b/src/bug-fix-procedure.md @@ -252,12 +252,12 @@ declare_lint! { This `declare_lint!` macro creates the relevant data structures. Remove it. You will also find that there is a mention of `OVERLAPPING_INHERENT_IMPLS` later in -the file as [part of a `lint_array!`][lintarraysource]; remove it too, +the file as [part of a `lint_array!`][lintarraysource]; remove it too. [lintarraysource]: https://github.com/rust-lang/rust/blob/085d71c3efe453863739c1fb68fd9bd1beff214f/src/librustc/lint/builtin.rs#L252-L290 -Next, you see see [a reference to `OVERLAPPING_INHERENT_IMPLS` in -`rustc_lint/src/lib.rs`][futuresource]. This defining the lint as a "future +Next, you see [a reference to `OVERLAPPING_INHERENT_IMPLS` in +`rustc_lint/src/lib.rs`][futuresource]. This is defining the lint as a "future compatibility lint": ```rust