diff options
Diffstat (limited to 'vendor/gix-features/src/threading.rs')
-rw-r--r-- | vendor/gix-features/src/threading.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/gix-features/src/threading.rs b/vendor/gix-features/src/threading.rs index ff0c819a5..2b33386d2 100644 --- a/vendor/gix-features/src/threading.rs +++ b/vendor/gix-features/src/threading.rs @@ -17,7 +17,7 @@ mod _impl { pub type Mutable<T> = parking_lot::Mutex<T>; /// A guarded reference suitable for safekeeping in a struct. pub type RefGuard<'a, T> = parking_lot::RwLockReadGuard<'a, T>; - /// A mapped reference created from a RefGuard + /// A mapped reference created from a `RefGuard` pub type MappedRefGuard<'a, U> = parking_lot::MappedRwLockReadGuard<'a, U>; /// Get a shared reference through a [`MutableOnDemand`] for read-only access. |