diff --git a/src/libstd/sys_common/mutex.rs b/src/libstd/sys_common/mutex.rs index 77a33e4c6be86..a4efe4d128e69 100644 --- a/src/libstd/sys_common/mutex.rs +++ b/src/libstd/sys_common/mutex.rs @@ -32,7 +32,7 @@ impl Mutex { /// Prepare the mutex for use. /// /// This should be called once the mutex is at a stable memory address. - /// It must not be called concurrently with any other operation. + /// Behavior is undefined unless this is called before any other operation. #[inline] pub unsafe fn init(&mut self) { self.0.init() }