about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJake Goulding <jake.goulding@gmail.com>2015-12-16 13:25:33 -0500
committerJake Goulding <jake.goulding@gmail.com>2015-12-16 13:25:46 -0500
commit936149fc25c2a94a7f1ed974765bb15565958c59 (patch)
tree687be4129a05ccd415a66b886d4d2bab045f9241
parentd4ffaf6f836e6ff8260548041bd1dc9d8bd146f9 (diff)
downloadrust-936149fc25c2a94a7f1ed974765bb15565958c59.tar.gz
rust-936149fc25c2a94a7f1ed974765bb15565958c59.zip
Remove rogue I
-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 {
 //      ~    ~~~