about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2017-01-27 14:41:21 -0800
committerAlex Crichton <alex@alexcrichton.com>2017-01-27 16:42:06 -0800
commita5ff11655785feac7a4f2f70bb8d27f428aa1115 (patch)
treea7f2709ecbb86329fa91b057e8cad05584eca495
parent4ef67babf2946447bafdfd31e75b135817ce0887 (diff)
parentfc490ad679328d657265352a71ed1f0e59a125bb (diff)
Rollup merge of #39321 - king6cong:master, r=frewsxcv
doc comment typo fix
-rw-r--r--src/librustc/ty/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc/ty/mod.rs b/src/librustc/ty/mod.rs
index 36fc5149b40..f97039b6a92 100644
--- a/src/librustc/ty/mod.rs
+++ b/src/librustc/ty/mod.rs
@@ -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 = ...;