about summary refs log tree commit diff
path: root/compiler/rustc_attr_parsing/src/lib.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2025-05-19 05:40:16 +0000
committerbors <bors@rust-lang.org>2025-05-19 05:40:16 +0000
commit5f292eea6d63abbd26f1e6e00a0b8cf21d828d7d (patch)
tree9ad151f0444fe3885af08319262b235b40292f6a /compiler/rustc_attr_parsing/src/lib.rs
parente42bbfe1f7c26f8760a99c4b1f27d33aba1040bb (diff)
parent93bc64dd49eb261306d54b7507e652ff94bd76fc (diff)
downloadrust-5f292eea6d63abbd26f1e6e00a0b8cf21d828d7d.tar.gz
rust-5f292eea6d63abbd26f1e6e00a0b8cf21d828d7d.zip
Auto merge of #141238 - Zalathar:rollup-zdqpazo, r=Zalathar
Rollup of 4 pull requests

Successful merges:

 - #140049 (fix autodiff macro on generic functions)
 - #140874 (make `rustc_attr_parsing` less dominant in the rustc crate graph)
 - #141094 (add regression test for rust-lang#101650)
 - #141110 ([std] fix the presentation of `split_off_mut` and `split_off` documentation)

r? `@ghost`
`@rustbot` modify labels: rollup
Diffstat (limited to 'compiler/rustc_attr_parsing/src/lib.rs')
-rw-r--r--compiler/rustc_attr_parsing/src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_attr_parsing/src/lib.rs b/compiler/rustc_attr_parsing/src/lib.rs
index 177df356742..da683ad58c1 100644
--- a/compiler/rustc_attr_parsing/src/lib.rs
+++ b/compiler/rustc_attr_parsing/src/lib.rs
@@ -60,7 +60,8 @@
 //! `#[stable(...)]` and `#[unstable()]` cannot occur together, and both semantically define
 //! a "stability" of an item. So, the stability attribute has an
 //! [`AttributeParser`](attributes::AttributeParser) that recognizes both the `#[stable()]`
-//! and `#[unstable()]` syntactic attributes, and at the end produce a single [`AttributeKind::Stability`].
+//! and `#[unstable()]` syntactic attributes, and at the end produce a single
+//! [`AttributeKind::Stability`](rustc_attr_data_structures::AttributeKind::Stability).
 //!
 //! As a rule of thumb, when a syntactical attribute can be applied more than once, they should be
 //! combined into a single semantic attribute. For example:
@@ -91,6 +92,5 @@ mod session_diagnostics;
 pub use attributes::cfg::*;
 pub use attributes::util::{find_crate_name, is_builtin_attr, parse_version};
 pub use context::{AttributeParser, OmitDoc};
-pub use rustc_attr_data_structures::*;
 
 rustc_fluent_macro::fluent_messages! { "../messages.ftl" }