doc comment typo fix

This commit is contained in:
king6cong 2017-01-27 02:05:33 +08:00
parent 2f0463a4a4
commit fc490ad679

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 = ...;