diff --git a/library/core/src/macros/mod.rs b/library/core/src/macros/mod.rs index be13317008c..3b026bc0e0f 100644 --- a/library/core/src/macros/mod.rs +++ b/library/core/src/macros/mod.rs @@ -1315,9 +1315,6 @@ pub(crate) mod builtin { /// Parses a file as an expression or an item according to the context. /// - ///
- /// /// **Warning**: For multi-file Rust projects, the `include!` macro is probably not what you /// are looking for. Usually, multi-file Rust projects use /// [modules](https://doc.rust-lang.org/reference/items/modules.html). Multi-file projects and @@ -1326,9 +1323,6 @@ pub(crate) mod builtin { /// explained in the Rust Book /// [here](https://doc.rust-lang.org/book/ch07-02-defining-modules-to-control-scope-and-privacy.html). /// - ///- ///