@@ -1157,9 +1157,9 @@ pub type RefRef<'a, T, U = T> = OwningRef<Ref<'a, T>, U>;
11571157pub type RefMutRef < ' a , T , U = T > = OwningRef < RefMut < ' a , T > , U > ;
11581158/// Typedef of an owning reference that uses a `MutexGuard` as the owner.
11591159pub type MutexGuardRef < ' a , T , U = T > = OwningRef < MutexGuard < ' a , T > , U > ;
1160- /// Typedef of an owning reference that uses a `RwLockReadGuard` as the owner.
1160+ /// Typedef of an owning reference that uses an `RwLockReadGuard` as the owner.
11611161pub type RwLockReadGuardRef < ' a , T , U = T > = OwningRef < RwLockReadGuard < ' a , T > , U > ;
1162- /// Typedef of an owning reference that uses a `RwLockWriteGuard` as the owner.
1162+ /// Typedef of an owning reference that uses an `RwLockWriteGuard` as the owner.
11631163pub type RwLockWriteGuardRef < ' a , T , U = T > = OwningRef < RwLockWriteGuard < ' a , T > , U > ;
11641164
11651165/// Typedef of a mutable owning reference that uses a `Box` as the owner.
@@ -1173,7 +1173,7 @@ pub type StringRefMut = OwningRefMut<String, str>;
11731173pub type RefMutRefMut < ' a , T , U = T > = OwningRefMut < RefMut < ' a , T > , U > ;
11741174/// Typedef of a mutable owning reference that uses a `MutexGuard` as the owner.
11751175pub type MutexGuardRefMut < ' a , T , U = T > = OwningRefMut < MutexGuard < ' a , T > , U > ;
1176- /// Typedef of a mutable owning reference that uses a `RwLockWriteGuard` as the owner.
1176+ /// Typedef of a mutable owning reference that uses an `RwLockWriteGuard` as the owner.
11771177pub type RwLockWriteGuardRefMut < ' a , T , U = T > = OwningRef < RwLockWriteGuard < ' a , T > , U > ;
11781178
11791179unsafe impl < ' a , T : ' a > IntoErased < ' a > for Box < T > {
0 commit comments