Fixed typo in RefCell::get_mut

This commit is contained in:
Anthony Clays 2017-08-17 10:57:17 +02:00
parent e407206534
commit fa346fc5d6
No known key found for this signature in database
GPG Key ID: B3B58CC1E77118C4

View File

@ -809,7 +809,7 @@ impl<T: ?Sized> RefCell<T> {
/// [`borrow_mut`] method instead if `self` isn't mutable.
///
/// Also, please be aware that this method is only for special circumstances and is usually
/// not you want. In case of doubt, use [`borrow_mut`] instead.
/// not what you want. In case of doubt, use [`borrow_mut`] instead.
///
/// [`borrow_mut`]: #method.borrow_mut
///