We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 998a877 commit 23522f6Copy full SHA for 23522f6
src/libstd/sync/mutex.rs
@@ -153,7 +153,7 @@ pub struct MutexGuard<'a, T: ?Sized + 'a> {
153
154
#[stable(feature = "rust1", since = "1.0.0")]
155
impl<'a, T: ?Sized> !Send for MutexGuard<'a, T> { }
156
-#[stable(feature = "rust1", since = "1.18.0")]
+#[stable(feature = "mutexguard", since = "1.18.0")]
157
unsafe impl<'a, T: ?Sized + Sync> Sync for MutexGuard<'a, T> { }
158
159
impl<T> Mutex<T> {
0 commit comments