Rollup merge of #39321 - king6cong:master, r=frewsxcv

doc comment typo fix
This commit is contained in:
Alex Crichton 2017-01-27 14:41:21 -08:00
commit a5ff116557

View file

@ -514,7 +514,7 @@ pub enum BorrowKind {
/// Data must be immutable but not aliasable. This kind of borrow
/// cannot currently be expressed by the user and is used only in
/// implicit closure bindings. It is needed when you the closure
/// implicit closure bindings. It is needed when the closure
/// is borrowing or mutating a mutable referent, e.g.:
///
/// let x: &mut isize = ...;