about summary refs log tree commit diff
path: root/src/libstd/sync
diff options
context:
space:
mode:
authorCorey Farwell <coreyf@rwell.org>2015-04-23 01:27:11 -0400
committerCorey Farwell <coreyf@rwell.org>2015-04-23 01:28:46 -0400
commit115705f8ece16e1e025b925459316620eb60cec6 (patch)
treece1f630b83a5c3f2ce116c7ba6b3d0b0254b3c1e /src/libstd/sync
parent6b29a7d5641e5242e1f3459b290e2c7f8e49e85a (diff)
downloadrust-115705f8ece16e1e025b925459316620eb60cec6.tar.gz
rust-115705f8ece16e1e025b925459316620eb60cec6.zip
Indicate trait names in doc-comment are code-like
Diffstat (limited to 'src/libstd/sync')
-rw-r--r--src/libstd/sync/mutex.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/sync/mutex.rs b/src/libstd/sync/mutex.rs
index 7896870ea07..5e688717c4a 100644
--- a/src/libstd/sync/mutex.rs
+++ b/src/libstd/sync/mutex.rs
@@ -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> {