about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRyan Levick <me@ryanlevick.com>2021-06-17 19:36:49 +0200
committerRyan Levick <me@ryanlevick.com>2021-06-25 14:51:56 +0200
commit5ef071ee42dc0c63cdf9e8a36cc2f71d4249c847 (patch)
tree52e701397df9f6fd64b39cd89599ddd43932e1bf
parent7b3940f44b1f0774f8b43d01786193744fee0079 (diff)
downloadrust-5ef071ee42dc0c63cdf9e8a36cc2f71d4249c847.tar.gz
rust-5ef071ee42dc0c63cdf9e8a36cc2f71d4249c847.zip
Add back missing doc
-rw-r--r--compiler/rustc_lint_defs/src/builtin.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/rustc_lint_defs/src/builtin.rs b/compiler/rustc_lint_defs/src/builtin.rs
index 2ddb196dd08..cd5ebf76a4d 100644
--- a/compiler/rustc_lint_defs/src/builtin.rs
+++ b/compiler/rustc_lint_defs/src/builtin.rs
@@ -1966,6 +1966,7 @@ declare_lint! {
     /// macros in that external crate to be brought into the prelude of the
     /// crate, making the macros in scope everywhere. As part of the efforts
     /// to simplify handling of dependencies in the [2018 edition], the use of
+    /// `extern crate` is being phased out. To bring macros from extern crates
     /// into scope, it is recommended to use a [`use` import].
     ///
     /// This lint is "allow" by default because this is a stylistic choice