]> git.lizzy.rs Git - rust.git/commitdiff
Indicate trait names in doc-comment are code-like
authorCorey Farwell <coreyf@rwell.org>
Thu, 23 Apr 2015 05:27:11 +0000 (01:27 -0400)
committerCorey Farwell <coreyf@rwell.org>
Thu, 23 Apr 2015 05:28:46 +0000 (01:28 -0400)
src/libstd/sync/mutex.rs

index 7896870ea07e0c5060019da93ded747edc094a52..5e688717c4a28865cfcde04e427ebcd11c51b1e2 100644 (file)
@@ -161,7 +161,7 @@ pub struct StaticMutex {
 /// dropped (falls out of scope), the lock will be unlocked.
 ///
 /// The data protected by the mutex can be access through this guard via its
-/// Deref and DerefMut implementations
+/// `Deref` and `DerefMut` implementations
 #[must_use]
 #[stable(feature = "rust1", since = "1.0.0")]
 pub struct MutexGuard<'a, T: 'a> {