From fa346fc5d661d39fd7806b13b55a3d6f6ed33cb1 Mon Sep 17 00:00:00 2001 From: Anthony Clays Date: Thu, 17 Aug 2017 10:57:17 +0200 Subject: [PATCH] Fixed typo in RefCell::get_mut --- src/libcore/cell.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcore/cell.rs b/src/libcore/cell.rs index 6068f1a79611e..dc0905e297251 100644 --- a/src/libcore/cell.rs +++ b/src/libcore/cell.rs @@ -809,7 +809,7 @@ impl RefCell { /// [`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 ///