@@ -1157,9 +1157,9 @@ pub type RefRef<'a, T, U = T> = OwningRef<Ref<'a, T>, U>;
1157
1157
pub type RefMutRef < ' a , T , U = T > = OwningRef < RefMut < ' a , T > , U > ;
1158
1158
/// Typedef of an owning reference that uses a `MutexGuard` as the owner.
1159
1159
pub 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.
1161
1161
pub 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.
1163
1163
pub type RwLockWriteGuardRef < ' a , T , U = T > = OwningRef < RwLockWriteGuard < ' a , T > , U > ;
1164
1164
1165
1165
/// Typedef of a mutable owning reference that uses a `Box` as the owner.
@@ -1173,7 +1173,7 @@ pub type StringRefMut = OwningRefMut<String, str>;
1173
1173
pub type RefMutRefMut < ' a , T , U = T > = OwningRefMut < RefMut < ' a , T > , U > ;
1174
1174
/// Typedef of a mutable owning reference that uses a `MutexGuard` as the owner.
1175
1175
pub 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.
1177
1177
pub type RwLockWriteGuardRefMut < ' a , T , U = T > = OwningRef < RwLockWriteGuard < ' a , T > , U > ;
1178
1178
1179
1179
unsafe impl < ' a , T : ' a > IntoErased < ' a > for Box < T > {
0 commit comments