We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents efa4d80 + 088b727 commit a5e2cceCopy full SHA for a5e2cce
src/libstd/sync/mutex.rs
@@ -133,11 +133,13 @@ unsafe impl<T: ?Sized + Send> Sync for Mutex<T> { }
133
/// dropped (falls out of scope), the lock will be unlocked.
134
///
135
/// The data protected by the mutex can be access through this guard via its
136
-/// `Deref` and `DerefMut` implementations.
+/// [`Deref`] and [`DerefMut`] implementations.
137
138
/// This structure is created by the [`lock()`] and [`try_lock()`] methods on
139
/// [`Mutex`].
140
141
+/// [`Deref`]: ../../std/ops/trait.Deref.html
142
+/// [`DerefMut`]: ../../std/ops/trait.DerefMut.html
143
/// [`lock()`]: struct.Mutex.html#method.lock
144
/// [`try_lock()`]: struct.Mutex.html#method.try_lock
145
/// [`Mutex`]: struct.Mutex.html
0 commit comments