diff options
Diffstat (limited to 'components/remutex')
-rw-r--r-- | components/remutex/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/remutex/lib.rs b/components/remutex/lib.rs index 5e48c88a94c..bf897a8928a 100644 --- a/components/remutex/lib.rs +++ b/components/remutex/lib.rs @@ -7,7 +7,7 @@ //! Re-entrant mutexes are like mutexes, but where it is expected //! that a single thread may own a lock more than once. -//! It provides the same interface as https://github.com/rust-lang/rust/blob/master/src/libstd/sys/common/remutex.rs +//! It provides the same interface as https://github.com/rust-lang/rust/blob/5edaa7eefd76d4996dcf85dfc1c1a3f737087257/src/libstd/sys_common/remutex.rs //! so if those types are ever exported, we should be able to replace this implemtation. #[macro_use] @@ -151,7 +151,7 @@ unsafe impl Send for HandOverHandMutex {} /// A type for re-entrant mutexes. /// -/// It provides the same interface as https://github.com/rust-lang/rust/blob/master/src/libstd/sys/common/remutex.rs +/// It provides the same interface as https://github.com/rust-lang/rust/blob/5edaa7eefd76d4996dcf85dfc1c1a3f737087257/src/libstd/sys_common/remutex.rs pub struct ReentrantMutex<T> { mutex: HandOverHandMutex, |