@@ -1133,7 +1133,7 @@ impl<'b, T: ?Sized> Ref<'b, T> {
1133
1133
/// The `RefCell` is already immutably borrowed, so this cannot fail.
1134
1134
///
1135
1135
/// This is an associated function that needs to be used as
1136
- /// `Ref::clone(...)`. A `Clone` implementation or a method would interfere
1136
+ /// `Ref::clone(...)`. A `Clone` implementation or a method would interfere
1137
1137
/// with the widespread use of `r.borrow().clone()` to clone the contents of
1138
1138
/// a `RefCell`.
1139
1139
#[ stable( feature = "cell_extras" , since = "1.15.0" ) ]
@@ -1174,7 +1174,7 @@ impl<'b, T: ?Sized> Ref<'b, T> {
1174
1174
}
1175
1175
}
1176
1176
1177
- /// Split a `Ref` into multiple `Ref`s for different components of the
1177
+ /// Splits a `Ref` into multiple `Ref`s for different components of the
1178
1178
/// borrowed data.
1179
1179
///
1180
1180
/// The `RefCell` is already immutably borrowed, so this cannot fail.
@@ -1223,7 +1223,7 @@ impl<'b, T: ?Sized> RefMut<'b, T> {
1223
1223
/// The `RefCell` is already mutably borrowed, so this cannot fail.
1224
1224
///
1225
1225
/// This is an associated function that needs to be used as
1226
- /// `RefMut::map(...)`. A method would interfere with methods of the same
1226
+ /// `RefMut::map(...)`. A method would interfere with methods of the same
1227
1227
/// name on the contents of a `RefCell` used through `Deref`.
1228
1228
///
1229
1229
/// # Examples
@@ -1253,7 +1253,7 @@ impl<'b, T: ?Sized> RefMut<'b, T> {
1253
1253
}
1254
1254
}
1255
1255
1256
- /// Split a `RefMut` into multiple `RefMut`s for different components of the
1256
+ /// Splits a `RefMut` into multiple `RefMut`s for different components of the
1257
1257
/// borrowed data.
1258
1258
///
1259
1259
/// The underlying `RefCell` will remain mutably borrowed until both
0 commit comments