diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2017-01-27 14:41:21 -0800 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2017-01-27 16:42:06 -0800 |
| commit | a5ff11655785feac7a4f2f70bb8d27f428aa1115 (patch) | |
| tree | a7f2709ecbb86329fa91b057e8cad05584eca495 | |
| parent | 4ef67babf2946447bafdfd31e75b135817ce0887 (diff) | |
| parent | fc490ad679328d657265352a71ed1f0e59a125bb (diff) | |
Rollup merge of #39321 - king6cong:master, r=frewsxcv
doc comment typo fix
| -rw-r--r-- | src/librustc/ty/mod.rs | 2 |
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 = ...; |
