@@ -1133,7 +1133,7 @@ impl<'b, T: ?Sized> Ref<'b, T> {
11331133 /// The `RefCell` is already immutably borrowed, so this cannot fail.
11341134 ///
11351135 /// 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
11371137 /// with the widespread use of `r.borrow().clone()` to clone the contents of
11381138 /// a `RefCell`.
11391139 #[ stable( feature = "cell_extras" , since = "1.15.0" ) ]
@@ -1174,7 +1174,7 @@ impl<'b, T: ?Sized> Ref<'b, T> {
11741174 }
11751175 }
11761176
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
11781178 /// borrowed data.
11791179 ///
11801180 /// The `RefCell` is already immutably borrowed, so this cannot fail.
@@ -1223,7 +1223,7 @@ impl<'b, T: ?Sized> RefMut<'b, T> {
12231223 /// The `RefCell` is already mutably borrowed, so this cannot fail.
12241224 ///
12251225 /// 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
12271227 /// name on the contents of a `RefCell` used through `Deref`.
12281228 ///
12291229 /// # Examples
@@ -1253,7 +1253,7 @@ impl<'b, T: ?Sized> RefMut<'b, T> {
12531253 }
12541254 }
12551255
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
12571257 /// borrowed data.
12581258 ///
12591259 /// The underlying `RefCell` will remain mutably borrowed until both
0 commit comments