diff options
Diffstat (limited to 'src/mutex.rs')
| -rw-r--r-- | src/mutex.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mutex.rs b/src/mutex.rs index ae5efc8..51089c4 100644 --- a/src/mutex.rs +++ b/src/mutex.rs @@ -148,7 +148,7 @@ pub struct MutexRef<'a, T: ?Sized + 'a, R: RawMutex>( /// /// [`lock`]: `Mutex::lock` /// [`try_lock`]: `Mutex::try_lock` - +// // This is the most lifetime-intensive thing I've ever written. Can I graduate // from borrow checker university now? pub struct MutexGuard<'a, 'key: 'a, T: ?Sized + 'a, Key: Keyable + 'key, R: RawMutex> { |
