Skip to content

Commit 141aeeb

Browse files
committed
Remove #[doc(hidden)] from AtomicPrimitive::AtomicInner
1 parent fc5644d commit 141aeeb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

library/core/src/sync/atomic.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -267,9 +267,9 @@ trait Sealed {}
267267
reason = "implementation detail which may disappear or be replaced at any time",
268268
issue = "none"
269269
)]
270-
#[allow(private_bounds)]
270+
#[expect(private_bounds)]
271271
pub unsafe trait AtomicPrimitive: Sized + Copy + Sealed {
272-
#[doc(hidden)]
272+
/// Temporary implementation detail.
273273
type AtomicInner: Sized;
274274
}
275275

0 commit comments

Comments
 (0)