diff options
| author | Pavel Grigorenko <GrigorenkoPV@ya.ru> | 2025-01-31 00:44:58 +0300 |
|---|---|---|
| committer | Pavel Grigorenko <GrigorenkoPV@ya.ru> | 2025-04-27 02:18:08 +0300 |
| commit | df3dd876c95f4dcf83a80c33fe9b5a59df78de45 (patch) | |
| tree | e8b78d61fcb71c4577fabb0f63fbfc670ad8f8e1 | |
| parent | 652998ba269a39a3a951bc47b67aae3e8b1998f9 (diff) | |
| download | rust-df3dd876c95f4dcf83a80c33fe9b5a59df78de45.tar.gz rust-df3dd876c95f4dcf83a80c33fe9b5a59df78de45.zip | |
Remove `#[doc(hidden)]` from `AtomicPrimitive::AtomicInner`
| -rw-r--r-- | library/core/src/sync/atomic.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/core/src/sync/atomic.rs b/library/core/src/sync/atomic.rs index bf7251172e0..84c7f1aafe1 100644 --- a/library/core/src/sync/atomic.rs +++ b/library/core/src/sync/atomic.rs @@ -267,9 +267,9 @@ trait Sealed {} reason = "implementation detail which may disappear or be replaced at any time", issue = "none" )] -#[allow(private_bounds)] +#[expect(private_bounds)] pub unsafe trait AtomicPrimitive: Sized + Copy + Sealed { - #[doc(hidden)] + /// Temporary implementation detail. type AtomicInner: Sized; } |
