diff options
| author | bors <bors@rust-lang.org> | 2015-04-23 09:58:12 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2015-04-23 09:58:12 +0000 |
| commit | 879c96225b3955b502fa795ee4d07d327ba08f84 (patch) | |
| tree | c0d830621da2aa073280f77db6511d7ca9cc931f /src/libstd | |
| parent | bd5c025df40b54b3bc5a4f1a111cce4033d3359e (diff) | |
| parent | 115705f8ece16e1e025b925459316620eb60cec6 (diff) | |
| download | rust-879c96225b3955b502fa795ee4d07d327ba08f84.tar.gz rust-879c96225b3955b502fa795ee4d07d327ba08f84.zip | |
Auto merge of #24714 - frewsxcv:patch-15, r=alexcrichton
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/sync/mutex.rs | 2 |
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> { |
