about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSteve Klabnik <steve@steveklabnik.com>2015-12-17 14:47:13 -0500
committerSteve Klabnik <steve@steveklabnik.com>2015-12-17 14:47:13 -0500
commit6c065b65c91852ea5ca91713d3e7c62a28413e56 (patch)
treeacec63f9ab2fc98dce6346c6f5e8c8d48799ab77
parent7fa08d5d7af3d74136f758a14dfbffc167fa3427 (diff)
parent936149fc25c2a94a7f1ed974765bb15565958c59 (diff)
downloadrust-6c065b65c91852ea5ca91713d3e7c62a28413e56.tar.gz
rust-6c065b65c91852ea5ca91713d3e7c62a28413e56.zip
Rollup merge of #30419 - shepmaster:rogue-I, r=alexcrichton
r? @steveklabnik
-rw-r--r--src/librustc/diagnostics.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc/diagnostics.rs b/src/librustc/diagnostics.rs
index cde8e7a6d1e..6a5910074d9 100644
--- a/src/librustc/diagnostics.rs
+++ b/src/librustc/diagnostics.rs
@@ -1337,7 +1337,7 @@ explanatory comments for the same example:
 
     // `for`-loops use a protocol based on the `Iterator`
     // trait. Each item yielded in a `for` loop has the
-    // type `Iterator::Item` -- that is,I `Item` is the
+    // type `Iterator::Item` -- that is, `Item` is the
     // associated type of the concrete iterator impl.
     for v in &vs {
 //      ~    ~~~