diff --git a/crossbeam-utils/src/atomic/atomic_cell.rs b/crossbeam-utils/src/atomic/atomic_cell.rs index 594c3ca0b..f4396be1f 100644 --- a/crossbeam-utils/src/atomic/atomic_cell.rs +++ b/crossbeam-utils/src/atomic/atomic_cell.rs @@ -168,8 +168,11 @@ impl AtomicCell { /// /// assert_eq!(a.load(), 8); /// ``` - #[doc(hidden)] - #[deprecated(note = "this method is unsound and will be removed in the next release")] + /// + /// # Caveat + /// + /// This method might be unsound and removed in a future release, but we haven't decided + /// yet. See [#315](https://github.com/crossbeam-rs/crossbeam/issues/315) for more details. pub fn get_mut(&mut self) -> &mut T { unsafe { &mut *self.value.get() } }