Skip to content

Commit db4a587

Browse files
committed
Remove #[doc(hidden)] from AtomicPrimitive::AtomicInner
1 parent 50deb1f commit db4a587

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
@@ -266,9 +266,9 @@ trait Sealed {}
266266
reason = "implementation detail which may disappear or be replaced at any time",
267267
issue = "none"
268268
)]
269-
#[allow(private_bounds)]
269+
#[expect(private_bounds)]
270270
pub unsafe trait AtomicPrimitive: Sized + Copy + Sealed {
271-
#[doc(hidden)]
271+
/// Temporary implementation detail.
272272
type AtomicInner: Sized;
273273
}
274274

0 commit comments

Comments
 (0)